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