0.7.0 • Published 2 years ago

azure-functions-decorators v0.7.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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

2 years ago

0.5.0

2 years ago

0.4.1

2 years ago

0.4.0

2 years ago

0.6.1

2 years ago

0.3.4

2 years ago

0.6.0

2 years ago

0.4.2

2 years ago

0.3.3

2 years ago

0.2.0

2 years ago

0.1.2

2 years ago

0.1.2-1

2 years ago

0.1.2-0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago