Express - Mongoose - Cors The application is now running locally on http://localhost:3000/.
The following API endpoints are available:
POST /tasks: Create a new task. Send a JSON object in the request body withdescriptionandcompletedfields.GET /tasks: Get a list of all tasks.PATCH /tasks/:id: Update a task by ID. Send a JSON object in the request body withdescriptionand/orcompletedfields to update.DELETE /tasks/:id: Delete a task by ID.