NESTJS: Starter -Befehlszeile
// Setting up a new project
% npm i -g @nestjs/cli
// new project
% nest new <project-name>
// run command
% npm run start
// watch your files, automatically recompiling, reloading the Server
% npm run start:dev
Sore Sardine