Skip to content

Instantly share code, notes, and snippets.

@askhogan
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save askhogan/427147852f7e2a33f531 to your computer and use it in GitHub Desktop.
Save askhogan/427147852f7e2a33f531 to your computer and use it in GitHub Desktop.
Simple Package
var request = require('request');
module.exports = function(){
request.get('http://google.com', function(err, response, body){
console.log(body);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment