Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/miensoap/express-annotations

@miensoap/express-annotations 저장소
https://github.com/miensoap/express-annotations

Last synced: 22 days ago
JSON representation

@miensoap/express-annotations 저장소

Awesome Lists containing this project

README

        

# @miensoap/express-annotations 😸
## 지원하는 기능

- `@Controller()`
- `@Get()`
- `@Post()`
- `@Delete()`
- `@Put()`
- `@Patch()`
- `@Component()`
- `@Autowired()`

## 설치
`npm i @miensoap/express-annotations`

## 사용 예시
KakaoTalk_20240912_155833995
KakaoTalk_20240912_155851650

```
// tsconfig.json
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"target": "ES6",
"module": "nodenext",
}
}
```