Boiler plate of Nest.js framework, An efficient and scalable Node.Js server-side applications and built in support of TypeOrm with database migrations and Hot module reload.
Nest.Js framework TypeScript starter repository with Typeorm support along with database Migrations and hot module reload.
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# generate migrations
$ npm run migration:generate migrationName
# run migrations
$ npm run migrate
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
Nest is MIT licensed.