- Notifications
You must be signed in to change notification settings - Fork421
A boilerplate for REST API Development with Node.js, Express, and MongoDB
License
maitraysuthar/rest-api-nodejs-mongodb
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A ready-to-use boilerplate for REST API Development with Node.js, Express, and MongoDB
This is a basic API skeleton written in JavaScript ES2015. Very useful to building a RESTful web APIs for your front-end platforms like Android, iOS or JavaScript frameworks (Angular, Reactjs, etc).
This project will run onNodeJs usingMongoDB as database. I had tried to maintain the code structure easy as any beginner can also adopt the flow and start building an API. Project is open for suggestions, Bug reports and pull requests.
I am open for a good job or work contract. You can contact me directly on my email (maitraysuthar@gmail.com) or you can download my CV from my personalwebsite.
If you consider my project as helpful stuff, You can appreciate me or my hard work and time spent to create this helpful structure with buying me a coffee.
- Basic Authentication (Register/Login with hashed password)
- Account confirmation with 4 (Changeable) digit OTP.
- Email helper ready just import and use.
- JWT Tokens, make requests with a token after login with
Authorizationheader with valueBearer yourTokenwhereyourTokenwill be returned in Login response. - Pre-defined response structures with proper status codes.
- Included CORS.
- Book example withCRUD operations.
- Validations added.
- Included API collection for Postman.
- Light-weight project.
- Test cases withMocha andChai.
- Code coverage withIstanbuljs (nyc).
- Included CI (Continuous Integration) withTravis CI.
- Linting withEslint.
- Node.js8+
- MongoDB3.6+ (Recommended4+)
- Clone the project from github. Change "myproject" to your project name.
git clone https://github.com/maitraysuthar/rest-api-nodejs-mongodb.git ./myproject
- Download repository
- Uncompress to your desired directory
cd myprojectnpm install- You will find a file named
.env.exampleon root directory of project. - Create a new file by copying and pasting the file and then renaming it to just
.envcp .env.example .env
- The file
.envis already ignored, so you never commit your credentials. - Change the values of the file to your environment. Helpful comments added to
.env.examplefile to understand the constants.
.├── app.js├── package.json├── bin│ └── www├── controllers│ ├── AuthController.js│ └── BookController.js├── models│ ├── BookModel.js│ └── UserModel.js├── routes│ ├── api.js│ ├── auth.js│ └── book.js├── middlewares│ ├── jwt.js├── helpers│ ├── apiResponse.js│ ├── constants.js│ ├── mailer.js│ └── utility.js├──test│ ├── testConfig.js│ ├── auth.js│ └── book.js└── public ├── index.html └── stylesheets └── style.css
npm run dev
You will know server is running by checking the output of the commandnpm run dev
Connected to mongodb:YOUR_DB_CONNECTION_STRINGApp is running ...Press CTRL + C to stop the process.
Note:YOUR_DB_CONNECTION_STRING will be your MongoDB connection string.
If you need to add more models to the project just create a new file in/models/ and use them in the controllers.
If you need to add more routes to the project just create a new file in/routes/ and add it in/routes/api.js it will be loaded dynamically.
If you need to add more controllers to the project just create a new file in/controllers/ and use them in the routes.
npmtestYou can set custom command for test atpackage.json file insidescripts property. You can also change timeout for each assertion with--timeout parameter of mocha command.
If you need to add more test cases to the project just create a new file in/test/ and run the command.
npm run lint
You can set custom rules for eslint in.eslintrc.json file, Added at project root.
Every project needs improvements, Feel free to report any bugs or improvements. Pull requests are always welcome.
This project is open-sourced software licensed under the MIT License. See the LICENSE file for more information.
About
A boilerplate for REST API Development with Node.js, Express, and MongoDB
Topics
Resources
License
Code of conduct
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
