const express = require('express'); const path = require('path'); const app = express(); const port = 5000; app.use(express.static(path.join(__dirname, '.'))); app.get('/', (req, res) => { res.sendFile(path.join(__dirname, 'index.html')); }); app.listen(port, () => { console.log(`Server listening at http://localhost:${port}`); });