Powering our Postman clone, the backend — engineered right here in Indore — is designed for robust data management and secure user operations. It primarily handles the secure storage and retrieval of user-created API requests, including request configurations, collections, and environments.
- Secure storage and retrieval of user-created API requests
- Organize requests into collections and environments
- User authentication and authorization
- Built with Node.js/JavaScript
- Node.js (version X.X.X)
- npm (version X.X.X)
- MongoDB or other database (specify if used)
git clone https://github.com/hyper-27/my-postman-backend-api.git
cd my-postman-backend-api
npm install
npm start
or (if you use nodemon):
npm run dev
Method | Endpoint | Description |
---|---|---|
POST | /login | User login |
POST | /signup | User registration |
GET | /requests | Get all user requests |
... | ... | ... |
Create a .env file in the project root and add:
PORT=3000
DB_URI=your_database_uri
JWT_SECRET=your_jwt_secret
├── controllers/
├── models/
├── routes/
├── middleware/
├── utils/
├── app.js
└── ...
Pull requests are welcome! For major changes, please open an issue first to discuss what you would like to change.