Skip to content

Instantly share code, notes, and snippets.

@rogeriopvl
Created November 30, 2009 22:55
Show Gist options
  • Save rogeriopvl/245852 to your computer and use it in GitHub Desktop.
Save rogeriopvl/245852 to your computer and use it in GitHub Desktop.
var sys = require('sys'),
http = require('http');
http.createServer(function(req, res) {
res.sendHeader(200, {'Content-Type': 'text/html'});
res.sendBody('<h1>Hello World</h1>');
res.finish();
}).listen(8080);
sys.puts('Server running at http://127.0.0.1:8080/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment