This is the backend API for the TWC Contacts Portal App, built as part of the TWC Intern Assignment. It includes endpoints for user authentication and contact management.
- Node.js
- Express.js
- MongoDB
To run the API locally, follow these steps:
- Clone this repository.
- Run
npm install
to install dependencies. - Create a
.env
file in the root directory and add your MongoDB connection URI asMONGODB_URI
and JWT Secret asJWT_SECRET
. - Start the server by running
npm start
.
POST /api/auth/signup
- Register a new userPOST /api/auth/signin
- Login an existing userPOST /api/auth/signout
- Logout userGET /api/contacts
- Get all contactsPOST /api/contacts
- Add a new contactPUT /api/contacts/:id
- Update a contactDELETE /api/contacts/:id
- Delete a contact
For testing the API endpoints, refer to the Postman documentation here.