Skip to content

Instantly share code, notes, and snippets.

@jimbog
Created December 8, 2014 23:23
Show Gist options
  • Save jimbog/0046677c12be5f0b0071 to your computer and use it in GitHub Desktop.
Save jimbog/0046677c12be5f0b0071 to your computer and use it in GitHub Desktop.
simple http server
var http = require("http");
http.createServer(onRequest).listen(8888);
function onRequest(request, response){
response.writeHead(200, {"Content-type": "text/plain"});
response.write("Hey I'm on the internets");
response.end();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment