Skip to content

Instantly share code, notes, and snippets.

@blissdev
Created September 22, 2013 05:09
Show Gist options
  • Save blissdev/6656906 to your computer and use it in GitHub Desktop.
Save blissdev/6656906 to your computer and use it in GitHub Desktop.
var http = require('http');
http.createServer(function(req, res) {
res.end(process.env.whoami);
}).listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment