Select Git revision
index.js 243 B
const express = require('express');
const app = express();
app.use(express.static('static'));
const server_port = 3000;
app.listen(server_port, function () {
console.log(`This server is listening on http://localhost:${server_port}`);
});