Skip to content

Instantly share code, notes, and snippets.

@joshuakfarrar
Created March 20, 2014 19:12
Show Gist options
  • Save joshuakfarrar/9671558 to your computer and use it in GitHub Desktop.
Save joshuakfarrar/9671558 to your computer and use it in GitHub Desktop.
var http = require('http');
http.get(process.argv[2], function(res) {
res.setEncoding('utf8');
res.on('data', function (data) {
console.log(data);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment