-
## Background
After Nammatham v2 entered the Alpha stage and underwent real-world usage testing, it performed well as an Azure Function library, more developer-friendly than Azure's official one.
…
-
- https://nextra.site/docs, -> nammatham.thaitype.dev
- https://github.com/gcanti/docs-ts -> ref.nammatham.com
-
-
- Reducing dependencies between azure function adapter and express plugins
- explicit use of dev mode like Next.js custom server
see https://nextjs.org/docs/pages/building-your-application/configu…
-
_Originally posted by @mildronize in https://github.com/Azure/azure-functions-nodejs-library/issues/201#issuecomment-2110788561_
I've been stuck many kind of monorepo tools such as Nx, or pnpm work…
-
Propose decorator and usage examples
```ts
import {
InvocationContext,
HttpResponse,
Response,
Request,
authLevel,
blobOutput,
blobTrigger,
context,
functionName,
ht…
-
Considering the new way to register functions
Do with:
- #97
# Before
```ts
app.addFunctions(blob, hello);
```
# After
Note: remove function name from `httpGet` first arg
```ts
expor…
-
Consider to add middleware at 2 levels: `app` (NammathamApp) and `func` level.
However, `NammathamApp` doesn't handle request or triggers by itself, consider to add middleware for `func` level wil…
-
```typescript
import { initNammatham } from '@nammatham/core';
import { AzureFunctionsAdapter } from '@nammatham/azure-functions';
const n = initNammatham.create(new AzureFunctionsAdapter());
ex…
-
Currently, Nammatham in `next` branch is quite a lot work for implement (I don't have enough time to implement it, feel free to open PR, discussion), next release show be a simple wrapper for v4
- B…