Skip to content

Instantly share code, notes, and snippets.

@FWeinb
Created August 5, 2015 16:37
Show Gist options
  • Save FWeinb/23a078deb1fc7261e2c0 to your computer and use it in GitHub Desktop.
Save FWeinb/23a078deb1fc7261e2c0 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