NestJS Setup
This will give the high level steps of creating a new NestJS project. More information can be found on the official site. NestJS
Prerequisite
Install NodeJS
NestJS CLI
NestJS provides a CLI that can be installed with npm
npm i -g @nestjs/cli
A new project can be create with the following:
nest new <project-name>
Note You can pass in the
--strictflag to turn on script mode in Typescript. More information can be found here Typescript Docs