Skip to content

Instantly share code, notes, and snippets.

@glennblock
Created June 29, 2012 19:40
Show Gist options
  • Save glennblock/3020182 to your computer and use it in GitHub Desktop.
Save glennblock/3020182 to your computer and use it in GitHub Desktop.
output version
var http = require('http');
http.createServer(function(req,res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('Hello from Windows Azure running node version: ' + process.version + '</br>');
}).listen(process.env.PORT || 3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment