REST API service responsible for serving the menu data for CaseritoApp.
- Node.js
- Express.js
- Helmet (Security)
- Morgan and Chalk (Logging)
| Method | Endpoint | Description |
|---|---|---|
| GET | / |
Service status |
| GET | /health |
Health check |
| GET | /menu |
Get full menu |
| GET | /menu?type=EMPANADA |
Filter by type |
# Install dependencies
npm install
# Development mode
npm run dev
# Production mode
npm start