// 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

Papi's Tacos

Family Owned and Operated since 1985

ANTOJITOS MEXICANOS GORDITAS
 
* Beans w/ Cheese 
(Frijoles con Queso) $4.99
 
* Poblano Pepper w/ Cheese
(Rajas) $6.99
 
* Chicken
(Pollo) $4.99
 
* Ground Beef
(Picadillo) $4.99
 
* Steak 
(Asada) $5.99
 
* Barbecue
(Barbocoa) $4.99

* Pork
(Pastor) $4.99
 
 
NEW ITEMS

* Mexican Chicken $9.99
* Mexican Rib Tips $9.99
 
BURRITOS
 
* Chicken
(Pollo) $9.99
 
* Ground Beef 
(Picadillo) $9.99
 
* Steak
(Asada) $10.50
 
* Pork
(Pastor) $9.99
 
* Melted Cheese
(Suizo) $9.99
 
* Mexican Sausage
(Chorizo) $9.99
 
 
 
TACOS
 
* Chicken
(Pollo) $2.99
 
* Ground Beef
(Picadillo) $2.99
 
* Pork
(Pastor) $2.99
 
* Steak
(Asada) $3.50
 
Stuffed Pepper
(Chile Relleno) $4.99 

bottom of page