Skip to content

Instantly share code, notes, and snippets.

@limone-eth
Last active October 14, 2020 12:55
Show Gist options
  • Save limone-eth/e29899c1d4f11bb3f92c39ccbdcfee4c to your computer and use it in GitHub Desktop.
Save limone-eth/e29899c1d4f11bb3f92c39ccbdcfee4c to your computer and use it in GitHub Desktop.
'use strict';
const os = require('os');
const express = require('express');
// Constants
const PORT = 3000;
const HOST = '0.0.0.0';
// App
const app = express();
app.get('/', (req, res) => {
res.send(os.hostname());
});
app.listen(PORT, HOST);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment