0a86b71
1
2
3
4
5
6
7
8
9
const express = require('express'); const app = express(); const port = 7860; app.use(express.static('public')); app.listen(port, () => { console.log(`Server running at http://localhost:${port}`); });