azure-functions-decorators
TypeScript icon, indicating that this package has built-in type declarations

0.7.0 • Public • Published

Azure functions decorators

Spring / NestJS like decorators for your Azure functions.

⚠️Under heavy development, unstable! ⚠️

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}`;
    }
}

Readme

Keywords

none

Package Sidebar

Install

npm i azure-functions-decorators

Weekly Downloads

1

Version

0.7.0

License

MIT

Unpacked Size

158 kB

Total Files

102

Last publish

Collaborators

  • nicolasbissig