A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository with Rest Api and Graphql with Passport and jwt local authentication and authorisation for both rest and graphql apis
$ 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
# generate migrations for your all entities
$ npm run typeorm:generate-migration
# generate migration for your specific entity
$ npm run typeorm:generate-migration --name=CreateEntityName
# To create basic migration
$ npm run typeorm:create-migration --name=YourMigrationName
# to run migrations
$ npm run typeorm:run-migrations
# to revert a migration
$ npm run typeorm:revert-migration
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.
- Author - Kamil Myśliwiec
- Website - https://nestjs.com
- Twitter - @nestframework
Nest is MIT licensed.