NestJS 세팅하기
NestJS NestJS란? Express와 마찬가지로 Node.js 서버 사이드에서 사용 가능한 프레임워크 Express를 기반으로 제작되어 TypeScript로 서버 코드 작성 선택적으로 Fastify 사용 가능 Project Setup NestJS 설치 yarn보다는 npm을 추천함 $ npm i -g @nestjs/cli New Project $ nest new $ [project name] 파일 생성 $ nest g [file type] [file name] $ nest g controller app 참고 $ nest Usage: nest [options] Options: -v, --version Output the current version. -h, --help Output usage inf..
2020.10.02