NodeJS , ExpressJS and MongoDB
First step:
Install all package dependencies from NPM
npm installSecond step:
After installing packages, then create ".env" file in root of the project and put these variables in the file
APP_PORT = 3000
MONGODB_URL = mongodb://127.0.0.1:27017/database_nameCreate new Todo
[POST] /api/todosGet all Todos
[GET] /api/todosGet Todo by ID
[GET] /api/todos/:idUpdate Todo by ID
[PATCH] /api/todos/:idDelete Todo by ID
[DELETE] /api/todos/:idDelete all Todos
[DELETE] /api/todos