NodeJS / ExpressJS MongoDB(Mongoose) Boilerplate

This is my boilerplate for RESTful API with NodeJS and MongoDB.

Boilerplate Features

  • Authentication with JWT (Reset Password with email)
  • User Create, Read, Update and Delete (CRUD) operations
  • API Security (NoSQL Injections, XSS Attacks, http param pollution etc)

Configuration File

Modify the config/.env file to your environment variables, set your JWT_SECRET and SMTP variables

NODE_ENV=development
PORT=3001

MONGO_URI=YOUR_URL

JWT_SECRET=YOUR_SECRET
JWT_EXPIRE=30d
JWT_COOKIE_EXPIRE=30

SMTP_HOST=smtp.mailtrap.io
SMTP_PORT=2525
SMTP_EMAIL=
SMTP_PASSWORD=
FROM_EMAIL=noreply@boilerplate.com
FROM_NAME=Boilerplate

Installation

Install all npm dependecies

npm install

Install nodemon globally

npm install -g nodemon

Run database seeder

node seeder -i

Delete all data

node seeder -d

Run Boilerplate

node run dev

License

This project is licensed under the MIT License