Skip to content

Instantly share code, notes, and snippets.

@hagzag
Last active May 11, 2020 18:58
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/541eb672ea7ab6bac33e66e0882c8919 to your computer and use it in GitHub Desktop.
Save hagzag/541eb672ea7ab6bac33e66e0882c8919 to your computer and use it in GitHub Desktop.
cat << EOF > index.js
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");
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment