code / server.js
fast72's picture
Create server.js
0a86b71 verified
raw
history blame contribute delete
204 Bytes
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}`);
});