Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created June 10, 2013 14:46
Show Gist options
  • Select an option

  • Save ynonp/5749293 to your computer and use it in GitHub Desktop.

Select an option

Save ynonp/5749293 to your computer and use it in GitHub Desktop.
var http = require('http');
var handler = function(req, res) {
res.write('Hello Node');
res.end();
};
var server = http.createServer( handler );
server.listen(8080 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment