Install Nest JS CLI
npm i -g @nestjs/cli
Create NestJS Project
- Syntax
nest new project-name
Task 1: Create a project - todoapp
nest new todoapp
cd todoapp
Start the application
npm run start
- It will run the application :
npm i -g @nestjs/cli
nest new project-name
todoappnest new todoapp
cd todoapp
npm run start