Skip to content

Instantly share code, notes, and snippets.

@lhitchon
Created February 10, 2012 18:00
Show Gist options
  • Save lhitchon/1791299 to your computer and use it in GitHub Desktop.
Save lhitchon/1791299 to your computer and use it in GitHub Desktop.
Deploy to AppFog form a Gist
var http = require('http');
http.createServer(function (req, res) {
res.end("Hello, world!");
}).listen( process.env.VCAP_APP_PORT || 8001 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment