Skip to content

Instantly share code, notes, and snippets.

@domdoescode
Created March 12, 2014 12:38
Show Gist options
  • Save domdoescode/9506097 to your computer and use it in GitHub Desktop.
Save domdoescode/9506097 to your computer and use it in GitHub Desktop.
Request test
request(
{ url: 'http://google.co.uk'
, method: 'GET'
}, function (error, response, body) {
if (error) {
logger.error(error)
return callback(error)
}
// Do some things
return callback(body)
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment