A boilerplate to get an express application up and running in 1 minute.
- Sequelize ORM setup
- Authentication with jsonwebtoken
- Bcrypt for password encryption
- Test Coverage with jest
- Validation blueprint using express validator
- Babel setup
- eslint
- Travis integration
- Authentication middleware
- Clone the repository -
git clone git@github.com:nedssoft/express-boilerplate.git - Change the git remote url to point to your repository -
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git - Create a file
.envand copy.env.exampleinto it -cp .env.example .env - Fill in the values in the
.env - Install dependencies -
npm install - Start the app -
npm run start:dev - Go ahead and explore the boilerplate and customize to suit your need