npm build
If you want to set environment.
export BUILD_ENV=dev
npm run server
npm test
npm run lint
docker build
tsc --watch
Above Script, compiles typescript into javascript and watch any changes (uses local tsconfig.json configuration)
nodemon dist
Above Script, Start node with debug (inspect) and auto restart server when changes are made in dist folder.
npm run generator
It asks for the module name and generates crud methods with basic model, controller, services, repo.
Add generated module route in /module/index.ts
To Render Angular Project, copy dist folder from angular project to /public/www/ folder.