npm.io
0.7.0 • Published 3 years ago

azure-functions-decorators

Licence
MIT
Version
0.7.0
Deps
1
Size
154 kB
Vulns
0
Weekly
0
Stars
4

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