Skip to content

Instantly share code, notes, and snippets.

@lhitchon
Created February 10, 2012 18:18
Show Gist options
  • Save lhitchon/1791422 to your computer and use it in GitHub Desktop.
Save lhitchon/1791422 to your computer and use it in GitHub Desktop.
Gist node.js App
var http = require('http');
http.createServer(function (req, res) {
res.end("This is a gist app!");
}).listen( process.env.VCAP_APP_PORT);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment