Backend_project(with team)
This is a simple backend project built with Node.js, Express, and MongoDB Atlas to manage two lists:
Students
Doctors
Features
Add a hardcoded student.
Add a student via request body.
Fetch all students.
Delete a specific student.
Add a doctor via query parameters.
Update a doctor's name via query parameters.
Fetch both students and doctors in one response.
Seed sample data for both students and doctors.
Project Structure
Backend_Task/
│
├── models/
│ ├── Student.js
│ └── Doctor.js
│
├── routes/
│ ├── students.js
│ └── doctors.js
│
├── server.js
├── package.json
└── README.md