Skip to content

Instantly share code, notes, and snippets.

@IPRIT
Created April 11, 2015 00:05
Show Gist options
  • Select an option

  • Save IPRIT/35fad5ba4b9a4fa07bd2 to your computer and use it in GitHub Desktop.

Select an option

Save IPRIT/35fad5ba4b9a4fa07bd2 to your computer and use it in GitHub Desktop.
Example Get with HTTP
var args = process.argv.slice(2);
var httpGet = require('./http_get');
httpGet(args[0], function(err, data) {
if (err) throw err;
console.log(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment