Skip to content

Instantly share code, notes, and snippets.

@marsch
Created October 1, 2011 10:14
Show Gist options
  • Save marsch/1255840 to your computer and use it in GitHub Desktop.
Save marsch/1255840 to your computer and use it in GitHub Desktop.
c9.io demo
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, "127.0.0.1");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment