NestJS Logo
Documentation | NestJS - A progressive Node.js framework
TypeScript
기반의 NestJS
백엔드 프레임워크에 대해서 공부한 내용을 다룬다.Express
또는 Fastify
위에서 동작하며 Express와 달리 Spring과 같이 어느 정도 구조가 정해져 있는 상태에서 개발을 한다고 생각하면 좋을 것 같다.<aside> ✅
Requirements
npm 설치 필요
@nestjs/cli
설치 필요
# nest에 필요한 cli 도구 설치
npm i -g @nestjs/cli
프로젝트 생성
nest new
# 프로젝트 이름 입력
# npm, yarn 중 사용할 것 입력
</aside>