-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
33 lines (25 loc) · 684 Bytes
/
.gitignore
File metadata and controls
33 lines (25 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# dependencies
/node_modules
# IDE
/.idea
/.awcache
/.vscode
# misc
npm-debug.log
.DS_Store
# tests
/test
/coverage
/.nyc_output
# source
dist
nestjs-azure-func-trigger.iml
# schematics
schematics/install/*.js
schematics/install/*.d.ts
schematics/install/express-engine/*.js
schematics/install/express-engine/*.d.ts
The package @nestjs/azure-func-http provides nice integration for Azure Function HTTP triggers.
This is not possible for any other azure function trigger.
I implemented a package similar to @nestjs/azure-func-http to be able to use any kind of azure function trigger.
This also provides a decorator that can provide the azure function context into the method.