Initially I was using express-generator (still using), but ended-up doing same thing again and again 'user JWT authentication with refresh token and suscription plan' so i decided to create git repository.
- Stateless authentication with JWT allowing for easy horizontal scaling (expiriIn: 2 Minute)
- ESLint Maintain your code quality with ease (Airbnb JavaScript Style).
- MongoDB database
- RefreshToken It can be used to acquire new access Tokens. (expireIn: 7 days)
- Subscription New user initially as 'Trial' and after 7 days as 'Free'.
- Email sendgrid to send welcome and cancellation email.
- Device Limit Only two device login limit.
- express (server)
- body-parser (reading body data)
- validator (input validation)
- helmet (Helmet helps you secure your Express apps by setting various HTTP headers.)
- cors (enable CORS)
- mongoose (Mongoose is a MongoDB object modeling tool)
- morgan (HTTP request logger middleware for node.js)
- express-rate-limit (ratelimiting endpoints)
- bcryptjs (password Encryption)
- jsonwebtoken (jwt creation & signing)
- compression (compress response bodies)
- dotenv (It loads environment variables from a .env file into process.env)
- multer (handling multipart/form-data)
- sharp (convert large images in common formats to smaller)
- debug (A tiny JavaScript debugging utility)
- sendgrid (just want to send email)
- nodemon (hot-reload)
- eslint (ESLint is a linter for the JavaScript programming language.)
- eslint-config-airbnb-base (Airbnb JavaScript Style)
- jest (Jest is a delightful JavaScript Testing Framework with a focus on simplicity.)
- supertest (HTTP assertions made easy via superagent.)
- Clone the project
git clone https://github.com/vinodnimbalkar/express-api-starter.git
. cd express-api-starter
- Make it your own
rm -rf .git && git init && npm init
- Install dependencies
npm install
- Create a
.env
file in the root like the.env.example
file. - For dev you need to have mongodb db locally.
- For dev -
npm run dev
- For lint -
npm run lint
- For test -
npm run test
├── app.js
├── bin
│ └── www
├── .env
├── .eslintrc.js
├── .gitignore
├── jest.config.js
├── LICENSE
├── nodemon.json
├── package.json
├── package-lock.json
├── public
│ ├── images
│ ├── index.html
│ ├── javascripts
│ └── stylesheets
│ └── style.css
├── README.md
├── src
│ ├── controllers
│ │ └── user.js
│ ├── db
│ │ └── mongoose.js
│ ├── email
│ │ └── account.js
│ ├── middleware
│ │ └── auth.js
│ ├── models
│ │ └── user.js
│ └── routes
│ ├── index.js
│ └── users.js
└── tests
└── user.test.js
13 directories, 21 files
- signup email verification by sending OTP
- Add docker support
Feel free to open an issue (or even better, send a Pull Request). Contributions are very welcome!! 😄
MIT © Vinod Nimbalkar