Developing a REST-FULL API to implement CRUD (Create, Read, Update, Delete) services for an appointment tracking system.Data is in text file in JSON format. The information about each appointment will have following attributes: id, title, date, time Implementing following commands:
- get/appointments
- Returning the list of attributes of all the appointments
- Returning the attributes of specific id
- Removes all the appointments
- Removes the appointments of specific id
- Add a new appointment with specific id
- Updates the attributes for the appointment specified by id using the priovided information
Implementing the REST-FULL API in Node.js
Testing the code on postman application
Implementing the html forms that interface the given API