Are you thinking of creating a simple backend API?
If so, you're in the right place.
here's how:
1. Download the tools
Node JS
Postman
Visual Studio
2. Setup the project
Install these packages
Express JS
MD5
Sqlite3
3. Setup entry point and define API Endpoint
Show the users.
Show the single user.
Create a new user.
Edit user details.
Delete user entry.
4. Test the API Endpoints Using Postman
Show all users:
GET http://localhost:8000/api/usersShow single user:
GET http://localhost:8000/api/user/:idCreate new user:
POST http://localhost:8000/api/userEdit user details:
PATCH http://localhost:8000/api/user/:idDelete user entry:
DELETE http://localhost:8000/api/user/:id
Here's the free guide: https://fabricantejerome.gumroad.com/l/hbwhle
GitHub Repository:
https://github.com/fabricantejerome/backend-development-for-beginners