Skip to content

Instantly share code, notes, and snippets.

@lguardiola
Created August 20, 2015 15:55
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 lguardiola/d7d333cde4340bb2f3aa to your computer and use it in GitHub Desktop.
Save lguardiola/d7d333cde4340bb2f3aa to your computer and use it in GitHub Desktop.
My first hook.io microservice
module['exports'] = function simpleHttpRequest (hook) {
// npm modules available, see: http://hook.io/modules
var request = require('request');
request.get('http://httpbin.org/ip', function(err, res, body){
if (err) {
return hook.res.end(err.messsage);
}
hook.res.end(body);
})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment