hook.io-request
a simple Hook for making outgoing http requests
Installation
npm install hook.io-request -g
Usage
hookio-request
Hook Events Names
http::request sends HTTP request:
http::request::result event emitted when request comes back:
http::request::error event emitted when error comes back:
Example
var options = {
url: "http://google.com/"
};
hook.emit('http::request', options, function(){
});
Note that the "hook" key contains original parameters passed to request,
making it ideal to put some other values for handling the request context (such as linking the request to an id, for example)