NestJS

Nest JS CLI 설치

dev-byul 2022. 3. 16. 17:01

Nest JS CLI로 Nest JS 시작하기

Nest JS CLI 설치하기

$ npm i -g @nestjs/cli

설치 이후 버전 확인하기

$ nest --version
8.2.2

Nest Project 생성하기

$ nest new nestjst
...
? Which package manager would you ❤️  to use? (Use arrow keys)
> npm
  yarn
  pnpm

프로젝트 생성 후 Nest 실행하기

nest start

'NestJS' 카테고리의 다른 글

간단하게 알아보는 NestJS Controller  (0) 2022.03.16
간단하게 알아보는 NestJS Module  (0) 2022.03.16
NestJS 기본 로직 흐름  (0) 2022.03.16
NestCLI로 생성한 프로젝트 기본구조  (0) 2022.03.16
Nest JS 란?  (0) 2022.03.16