Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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