This project demonstrates a basic API and frontend integration. Currently expanding it to full CRUD functionality.
Features
GET /items → Returns a list of items
POST /items → Adds a new item
Example Response
GET /items
[ { "id": 1, "name": "Item 1" }, { "id": 2, "name": "Item 2" } ]
Tech Stack
Node.js
Express.js
Status
Currently working on:
Integrating MongoDB
Building Angular frontend
Use to Run
Install dependencies: npm install
Run the server: node server.js
Open in browser: http://localhost:3000/ite...
Future Improvements
Connect to MongoDB database
Add full CRUD operations
Build Angular frontend
This project demonstrates my understanding of building APIs and working with backend logic.