Welcome to the Express MongoDB API repository! This project is a robust and scalable RESTful API built using Express.js and MongoDB. It provides a clean and efficient backend solution for managing data and handling various API requests in a Node.js environment.
- Features
- Badges
- Tech Stack
- Installation
- Usage
- Build
- Environment Variables
- API Endpoints
- Testing
- Roadmap
- Support
- Feedback
- Contributing
- FAQ
- Acknowledgements
- Author
- License
- RESTful API: Fully functional REST API endpoints for data management.
- MongoDB Integration: Utilizes MongoDB for data storage with efficient querying.
- JWT Authentication: Secure endpoints with JSON Web Token (JWT) based authentication.
- Role-Based Access Control: Manage user permissions with role-based access.
- Validation Middleware: Validate incoming requests using express-validator.
- Logging Middleware: Request logging for monitoring and debugging.
- Error Handling: Comprehensive error handling for robust API performance.
- Unit Tests: Includes unit tests for middleware and controller functions to ensure code reliability.
- Backend: Node.js, Express.js
- Database: MongoDB
- Authentication: JWT
- Testing: Jest
- Validation: express-validator
- Environment Management: dotenv
To get started with this project, follow these steps:
-
Clone the Repository
git clone https://github.com/jsuyog2/express-mongodb-api.git cd express-mongodb-api
-
Install Dependencies
Ensure you have Node.js and npm installed. Then run:
npm install
-
Set Up Environment Variables
Create a .env
file in the root directory of the project. Configure the environment variables as described in Environment Variables.
Start the server
npm run start
To build the project using Webpack, use the following commands:
To create an optimized production build:
npm run build
This command will generate the bundled files optimized for production in the dist
directory.
After building the project, you can start the server with:
npm run prod
This command builds the project (if not already built) and then starts the server using the generated bundle.js
file in the dist
directory.
To run this project, you need to configure the following environment variables in your .env
file:
PRODUCTION
: Set totrue
for production mode orfalse
for development mode.BASE_URL
: The base URL for the application (e.g.,http://127.0.0.1:3000
).PORT
: The port on which the application will run (e.g.,3000
).CORS_LIST
: Comma-separated list of allowed origins for CORS (e.g.,http://localhost:4200
).JWT_SECRET
: Secret key for signing JWT tokens.JWT_PUBLICKEY_PATH
: Path to the public key file for JWT verification.JWT_PRIVATEKEY_PATH
: Path to the private key file for JWT signing.SESSION_SECRET
: Secret key used for session management.MONGO_URI
: Connection string for MongoDB database (e.g.,mongodb://localhost:27017/mydatabase
).MAIL_HOST
: SMTP server host for sending emails.MAIL_PORT
: SMTP server port for sending emails (e.g.,465
).MAIL_USERNAME
: SMTP server username.MAIL_PASSWORD
: SMTP server password.
Here’s an example .env
file with the required variables:
PRODUCTION=false
BASE_URL=http://127.0.0.1:3000
PORT=3000
CORS_LIST=http://localhost:4200
JWT_SECRET=api_secret_key
JWT_PUBLICKEY_PATH=E:/Clouds/express-mongodb-api/key/public.key
JWT_PRIVATEKEY_PATH=E:/Clouds/express-mongodb-api/key/private.key
SESSION_SECRET=api_session_secret
MONGO_URI=mongodb://localhost:27017/mydatabase
MAIL_HOST=smtp.example.com
MAIL_PORT=465
MAIL_USERNAME=example@example.com
MAIL_PASSWORD=your_email_password
Ensure that you replace the placeholder values with your actual configuration details.
Now you need to create Private and Public Key to generate a Token.
-
Generate an RSA private key, of size 2048, and output it to a file named
private.key
:openssl genrsa -out key/private.key 2048
-
Extract the public key from the key pair, which can be used in a certificate:
openssl rsa -in key/private.key -outform PEM -pubout -out key/public.key
Note: Make sure both
key/private.key
andkey/public.key
are saved in thekey
folder.
This section provides an overview of the available API endpoints for the application. For detailed request and response formats, refer to the Postman Documentation.
-
Login
- Endpoint:
POST /login
- Description: Authenticates a user and returns a JWT token.
- Body:
{ "username": "string", "password": "string" }
- Responses:
- 200 OK: Success
- 401 Unauthorized: Invalid credentials
- Endpoint:
-
Signup
- Endpoint:
POST /signup
- Description: Registers a new user.
- Body:
{ "username": "string", "password": "string", "email": "string" }
- Responses:
- 201 Created: Success
- 400 Bad Request: Validation errors
- Endpoint:
-
Logout
- Endpoint:
POST /logout
- Description: Logs out the user and invalidates the session.
- Responses:
- 200 OK: Success
- Endpoint:
-
Get User Profile
- Endpoint:
GET /user
- Description: Retrieves the authenticated user's profile.
- Headers:
- Authorization: Bearer token
- Responses:
- 200 OK: Success
- 401 Unauthorized: Invalid token
- Endpoint:
-
Update User Profile
- Endpoint:
PUT /user
- Description: Updates the authenticated user's profile information.
- Headers:
- Authorization: Bearer token
- Body:
{ "username": "string", "email": "string" }
- Responses:
- 200 OK: Success
- 400 Bad Request: Validation errors
- Endpoint:
For further details and examples, please refer to the Postman Collection.
To run the unit tests for the project, use:
npm test
This command will execute all the tests defined in the test
directory.
The roadmap outlines planned features and improvements for the Express MongoDB API project. We aim to continuously enhance the project based on user feedback and evolving requirements.
- Enhanced Security: Implement advanced security features like rate limiting and IP whitelisting.
- User Roles and Permissions: Expand role-based access control with more granular permissions.
- API Rate Limiting: Introduce rate limiting to prevent abuse and ensure fair usage.
- Documentation Improvements: Enhance API documentation with more detailed examples and usage guidelines.
- Performance Optimizations: Optimize query performance and server response times.
- Internationalization (i18n): Add support for multiple languages to accommodate global users.
- Additional Endpoints: Add new endpoints based on user needs and project requirements.
- **Docker
Support**: Containerize the application for easier deployment and scalability.
- Monitoring and Analytics: Integrate monitoring and analytics tools to track API usage and performance.
- GraphQL Support: Explore adding GraphQL support for more flexible querying options.
- Admin Dashboard: Develop an admin dashboard for managing users and monitoring application health.
We welcome contributions and suggestions from the community. Feel free to open issues or submit pull requests to help us improve the project.
For any issues or questions, please create a GitHub issue or reach out to us via email at jsuyog2@gmail.com.
We value your feedback! If you have any suggestions or comments, please share them with us. Your input helps us improve the project and better serve our users.
We welcome contributions from the community! If you’d like to contribute to this project, please follow these steps:
- Fork the Repository: Create a personal copy of the repository by forking it.
- Create a Branch: Create a new branch for your changes.
- Make Changes: Implement your changes or additions.
- Submit a Pull Request: Open a pull request with a description of your changes.
Please refer to the contributing guidelines for more detailed instructions.
Q: How do I configure the application for production use?
A: Ensure that you set the PRODUCTION
environment variable to true
and configure your environment variables appropriately for production.
Q: What should I do if I encounter issues with MongoDB connection?
A: Check your MONGO_URI
environment variable for accuracy. Ensure that MongoDB is running and accessible from your application.
Q: How can I contribute to the project?
A: Follow the contributing guidelines to submit your contributions. We appreciate any help you can provide!
We would like to thank the contributors and the open-source community for their support and resources that made this project possible.
Suyog Dinesh Jadhav
- Email: jsuyog2@gmail.com
This project is licensed under the MIT License. See the LICENSE file for details.