Context Build a RESTful API that can get/create/update/delete user data from a persistence database
User Model { "id": "xxx", "name": "test", "dob": "", "address": "", "description": "", "createdAt": "" }
Requirements Functionality
● The API should follow typical RESTful API design pattern.
● The data should be saved in the DB.
● Provide proper unit tests.
● Provide proper API documents.
Tech stack
● Use Node.js and any framework.
● Use any DB. MySQL DB is preferred.