[NestJS] 프로젝트 생성
·
📁Framework/🦁 NestJS
설치npm i -g @nestjs/clinest new ckz-backyarn ** node_modules가 생기지 않는다면 방법 1)yarn config set nodeLinker node-modules 방법 2) 1. /에 .yarnrc.yml 파일 생성2. 아래 내용 작성nodeLinker: node-modules3. 입력후 yarn install 도메인 구조src/└── user/ ├── dto/ │ ├── create-user.dto.ts │ └── update-user.dto.ts ├── user.controller.ts ├── user.service.ts ├── user.module.ts ├── user.entity.ts ├── user..