Skip to content

Instantly share code, notes, and snippets.

@odino
Created July 31, 2015 10:09
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 odino/4f4dfdbd830e8ac3e2f0 to your computer and use it in GitHub Desktop.
Save odino/4f4dfdbd830e8ac3e2f0 to your computer and use it in GitHub Desktop.
require('http').createServer(function(req, res){
console.log("Hello...")
res.writeHead(200, {})
res.end("...world!")
}).listen(8888)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment