Skip to content

Instantly share code, notes, and snippets.

@vaderj
Last active June 12, 2018 16:52
Show Gist options
  • Save vaderj/e950d6681f9936f1249c to your computer and use it in GitHub Desktop.
Save vaderj/e950d6681f9936f1249c to your computer and use it in GitHub Desktop.
Quick HTTP server for Node.JS #Javascript #Node.JS
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8888);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment