Skip to content

Instantly share code, notes, and snippets.

@knd
Created April 2, 2014 14:26
Show Gist options
  • Save knd/9935222 to your computer and use it in GitHub Desktop.
Save knd/9935222 to your computer and use it in GitHub Desktop.
var fetch = require( 'request' );
fetch( 'http://www.google.com', function( error, response, body ) {
if ( !error && response.statusCode == 200 ) {
console.log( body );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment