Skip to content

Instantly share code, notes, and snippets.

@jimbog
Created December 8, 2014 21:16
Show Gist options
  • Save jimbog/c7c316f6168a92c8d72b to your computer and use it in GitHub Desktop.
Save jimbog/c7c316f6168a92c8d72b to your computer and use it in GitHub Desktop.
simple node http server
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