Azure functions decorators
Spring / NestJS like decorators for your Azure functions.
Install
npm i azure-functions-decorators
add
"experimentalDecorators": true
to your tsconfig.json
Example
class FunctionApp {
@HttpFunction()
static async httpTrigger(@QueryParameter('name') name: string): Promise<string> {
return `Hello, ${name}`;
}
}