1.Clone the project
2.npm install
3.npm start
4.open the browser and type http://localhost:3000/ ( End point name)
-
Node.js
-
mongoDB cloud(https://account.mongodb.com/account/login?nds=true)
login details
- email address - [email protected]
- password - ESOFT123
-
IDE:- Visual Studio Code
- Client login details
- /posts - Fetch all data from database - (GET)
- /posts/ID - Fetch data by ID from database - (GET)
- /posts - Insert data to the database - (POST)
- /posts/ID - Update data from database - (PATCH)
- /posts/ID - Delete data from database - (DELETE)
Fetch data |
Fetch data by ID |
Insert data |
Insert data to mongoDB |
Update data |
Update data to mongoDB |
Delete data |
Delete data to mongoDB |