[NestJS] NestJS 기본 요소
NestJS는 기본적으로 node.js의 Express를 기본 토대로 하여 만들어졌다. Express, Fastify 프레임워크를 래핑하여 동작한다. platform-express or platform-fastify 별도의 설정이 없으면 @nestjs/platform-express 이 기본적으로 사용된다. NestJS는 Angular로부터 영향을 많이 받았다. NestJS의 철학 Express에서 부가적으로 타입스크립트, 로깅을 사용하려면 새로 설정을 해줘야하는 번거로움이 있다. 이를 단순히 명령어 입력을 통해 구현할 수 있다. NestJS 시작하기 $ npm i -g @nestjs/cli $ nest new nestjs-test NestJS 기본 요소 nestjs-board-app ├── .eslint..
2024.01.15