braid/server.js
2019-02-27 14:00:42 -05:00

17 lines
279 B
JavaScript
Executable File

'use strict';
const express = require('express');
// Constants
const PORT = 80;
const HOST = '0.0.0.0';
// App
const app = express();
app.get('/', (req, res) => {
res.send('Hello worlds????\n');
});
app.listen(PORT, HOST);
console.log(`Running on http://${HOST}:${PORT}`);