목록NodeJS/NestJS (2)
도찐개찐
1. Nest 프로젝트 생성 $ nest new swagger-test ⚡ We will scaffold your app in a few seconds.. ? Which package manager would you ❤️ to use? (Use arrow keys) ❯ npm yarn pnpm 2. NestJS Swagger D/I $ npm i @nestjs/swagger 3. 프로젝트 Swagger 적용 Swagger Document 적용 방법 main.ts 직접 적용 별도 document 객체 정의 후 main.ts에 설정 import: 단일 책임 원칙을 위해 개인적으로 추천 main.ts 직접 적용 방법 ./src/main.ts import { NestFactory } from '@nestjs/c..
NestJS 모듈을 추가 하는 방법 2가지 nest cli 직접 파일 추가 직접 파일을 추가하는 방법은 NestJS 모듈 추가 작업하는데 익숙해지는데 좋을 수 있지만 최근 개발자들은 새로운 기술들을 더 많이 사용해야 하기때문에 생산성을 조금이라도 높일 수 있도록 nest cli 를 이용해 간편하게 생성하는 것을 추천 합니다. Nest Cli 명령어 확인 쉘(cmd, terminal...) 접속 > 프로젝트 경로 이동 > 하단 명령어 실행 $ nest 출력 결과 Usage: nest [options] Options: -v, --version Output the current version. -h, --help Output usage information. Commands: new|n [options] [n..