// server.js const express = require('express'); const bodyParser = require('body-parser'); const app = express(); const PORT = process.env.PORT || 5000; // Middleware app.use(bodyParser.json()); // Routes app.get('/api/restaurants', (req, res) => { // Logic to fetch list of restaurants from database res.json(restaurants); }); app.post('/api/orders', (req, res) => { const { customerId, items } = req.body; // Logic to process order and save it to database res.json({ success: true, message: 'Order placed successfully' }); }); // Start server app.listen(PORT, () => { console.log(`Server is running on port ${PORT}`); });
top of page
Damenzo's
Pizza & Restaurant
Family Owned and Operated Since 1985
HOURS:
Sun. - Thurs. 10:00am - 12:00am
Fri. - Sat. 10:00am - 1:00am
HOME
ABOUT
MENU
PIZZA
STUFFED OR PAN
CALZONE
ITALIAN DINNERS
SANDWICHES
SIDE ORDERS
NEW ITEMS
CATERING TRAYS
LOCATIONS - CONTACT
More
Use tab to navigate through the menu items.
CALZONE
Calzone
Your Choice of any Pizza ingredient for an additional $1.00 each
Sm. 6.98
Reg. 9.99
bottom of page