const express = require('express'); const path = require('path'); const app = express(); const port = 3000; // Serve static files app.use(express.static(path.join(__dirname))); // Handle all routes by sending the index.html app.get('*', (req, res) => { res.sendFile(path.join(__dirname, 'index.html')); }); app.listen(port, () => { console.log(`Server running at http://localhost:${port}`); });