A REST API built with Express.js implementing full CRUD operations on student data.
- Express Router & Middleware
- CRUD routes with request/response handling
- Working with JSON data and Postman
| Method | Route | Description |
|---|---|---|
| GET | /students | Fetch all students |
| GET | /students/:id | Fetch student by ID |
| POST | /students | Add new student |
| PUT | /students/:id | Update student |
| DELETE | /students/:id | Remove student |
- How to organize Express apps modularly
- Understanding API structure and data flow
- Debugging & testing with Postman
Week 5: My first real REST API project 👨🏽💻