Tutorial for nestjs web api - Task Management
A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
- Using CLI command: refs https://typeorm.io/#/migrations/creating-a-new-migration
# comand work on .js file
typeorm migration:run
typeorm migration:revert
# will create .ts file
typeorm migration:create
typeorm migration:generate
# using ts-node
ts-node --transpile-only ./node_modules/typeorm/cli.js migration:run