start nestjs server windows start code example
Example 1: nestjs start server
//in root of project
npm run start
Example 2: start nestjs server
# mode développement
$ npm run start:dev
# mode production
$ npm run start:prod
//in root of project
npm run start
# mode développement
$ npm run start:dev
# mode production
$ npm run start:prod