A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
$ npm installFor running the email service, log in to your google account and add an 'app password'. Use google and follow the steps on how to make one, then add your own credentials into the .env file.
JWT_SECRET=<generate a jwt secret key and enter here>
# database credentials are for local Docker development
DATABASE_HOST: localhost
DATABASE_USER: root
DATABASE_PASSWORD: root
DATABASE_NAME: skillswap
EMAIL_USER=<email address being used>
EMAIL_PASS=<password for email address>
# KEEP THIS AS IT IS SHOWN HERE
NODE_ENV=development# build docker container
$ npm run docker
# run server
$ npm run start:ts# 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.