# 🏪 Simple Shop Server
My first server built with Express.js — a minimal API that manages shop products.
---
### 🧠 Concepts Practiced
- Express.js setup and server creation
- Handling routes and middleware
- Using NPM for dependency management
---
### ⚙️ Endpoints
| Method | Route | Description |
|--------|--------|-------------|
| GET | /products | Get all products |
| POST | /products | Add new product |
| PUT | /products/:id | Update product |
| DELETE | /products/:id | Delete product |
---
### 💡 What I Learned
- The structure and flow of an Express.js app
- How routes and middleware connect in backend logic
---
> Week 3: My first real backend experience 🚀