A simple contact saving website made as a part of FullStackOpen challenge.
Frameworks/Tech used -
- Node.js
- Express.js
- React - Repository link
- MongoDB -
Method | Route | Function |
---|---|---|
GET | /api/persons | Returns a json file containing all contacts. |
GET | /api/persons/:id | Returns a json object for a particular contact. |
POST | /api/persons | Saves a new contact |
DELETE | /api/persons/:id | Deletes contact with given id |
PUT | /api/persons/:id | Updates contact with given id |
GET | /info | Returns information about number of contacts saved |
###Screenshots