Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/l-chris/nest-decorators
useful decrorators for nest
https://github.com/l-chris/nest-decorators
Last synced: about 2 months ago
JSON representation
useful decrorators for nest
- Host: GitHub
- URL: https://github.com/l-chris/nest-decorators
- Owner: L-Chris
- License: mit
- Created: 2018-10-09T14:32:25.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-09T16:33:41.000Z (about 6 years ago)
- Last Synced: 2024-01-23T23:03:37.323Z (12 months ago)
- Language: TypeScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nest-decorators
useful decorators for nest## ParamDecorator
### Cookie
```ts
// { decode: true } will transfer to cookie.parse https://github.com/jshttp/cookie
async findOne(@Cookie({ decode: true }) cookie) {
console.log(cookie)
}
```