Skip to content

Instantly share code, notes, and snippets.

@hagzag
Created June 8, 2020 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hagzag/e4cf3281cc0345826c400e42176b9d9a to your computer and use it in GitHub Desktop.
Save hagzag/e4cf3281cc0345826c400e42176b9d9a to your computer and use it in GitHub Desktop.
var http = require("http");
var os = require('os');
var server = http.createServer(function (request, response) {
response.writeHead(200, {
"Content-Type": "text/plain"
});
response.end("Request processed by http-server on: " + os.hostname() + "\n");
}).listen(8080);
console.log('Listening on port 8080');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment