This project is a backend REST API built as part of coursework to practice Node.js, Express, and basic backend architecture concepts. It demonstrates structured routing, modular code organization, and handling HTTP requests and responses.
- RESTful API endpoints
- Modular folder structure (routes, controllers/services)
- Basic authentication logic
- Data handling with JavaScript
- Express middleware usage
- Node.js
- Express.js
- JavaScript (ES6+)
midterm/ │── routes/ │── models/ │── services/ │── auth/ │── app.js / server.js │── package.json
git clone https://github.com/elenee/midterm.git
cd midterm
npm install
npm start
- Implemented API routes and request handling
- Organized backend logic into separate modules
- Practiced REST API structure and Express fundamentals
- Gained hands-on experience with backend development workflows
This project was created for learning purposes and focuses on backend fundamentals rather than production-level features such as deployment or testing.