build a REST API using nodejs/Express &MongoDB and use it
store the Data using MongoDB --> Atlas MongoDB
GET all the tasks --> api/v1/tasks
POST (add) a task --> api /v1/tasks
GET a single task --> api/v1/tasks/{:id} -->id:String
UPDATE(PATCH) a single task --> api/v1/tasks/{:id} --> id:String
DELETE a task ---> api/v1/tasks/{:id} --> id:String