A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
Create a .env file in the project root folder and add the following environment variables:
DB_HOST=your_host
DB_PORT=port_number
DB_USERNAME=your_database_username
DB_PASSWORD=your_database_password
DB_DATABASE=your_database_name
JWT_SECRET=your_jwt_secret_key
JWT_EXPIRATION=jwt_token_expiration_time$ 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:covNest 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.