서버사이드/NodeJS
Nestjs 따라잡기 5
Dohoon
2024. 8. 21. 23:21
TypeORM
- 라이브러리 설치 : npm install --save @nestjs/typeorm typeorm mysql2 @nestjs/config
- app.modules.ts 에 import 추가
- entity 생성
- service
- @InjectRepository 를 이용해 CRUD 구현
- controller
- routing 정의