Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 저장소
- Host: GitHub
- URL: https://github.com/miensoap/express-annotations
- Owner: Miensoap
- Created: 2024-09-12T07:16:25.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2024-09-23T09:17:15.000Z (about 2 months ago)
- Last Synced: 2024-10-11T20:05:10.387Z (about 1 month ago)
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@miensoap/express-annotations
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @miensoap/express-annotations 😸
## 지원하는 기능- `@Controller()`
- `@Get()`
- `@Post()`
- `@Delete()`
- `@Put()`
- `@Patch()`
- `@Component()`
- `@Autowired()`## 설치
`npm i @miensoap/express-annotations`## 사용 예시
```
// tsconfig.json
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"target": "ES6",
"module": "nodenext",
}
}
```