Student API
A simple HTTP server for managing student data using Node.js. This API allows you to perform CRUD operations on a list of students.
Features:
- GET /students: Retrieve a list of all students.
- GET /students/id: Retrieve a specific student by ID.
- POST /students: Add a new student.
- PUT /students/id: Update an existing student by ID.
- DELETE /students/id: Remove a student by ID.
ERROR HANDLING: Returns 400 NOT FOUND response when a student is not found. This server will run on http://localhost/3000