reqa
v0.1.0
Published
Simple request framework with middleware support for pre and post request processing
Downloads
3
Readme
Reqa
Simple Node.js HTTP Client request wrapper that supports calling middleware before and after the request.
Installation
npm install --save reqa
Usage
Sample usage:
reqa.get('https://nodejs.org/api/http.json', {
pre: [
insert_header('x-wat', 'whoop!')
],
post: [
json_body
],
proxy: 'http://localhost:8888/'
}, function (req, res) {
assert(res.json);
done();
});
Sample pre function insert_header
:
function inject_header(name, value) {
return function (req, next) {
req.setHeader(name, value);
next();
};
}
Sample post function json_body
:
function json_body(res, next) {
res.json = JSON.parse(res.body || '{}');
next();
}
Options
The options supported are:
pre
— An array of functions to call, in order, before making the request.post
— An array of functions to call, in order, after the request is complete before invoking the callbackproxy
— A string value representing the proxy server to use for any requestsheaders
— A map of custom headers
Limitations
The current implementation only supports GET
calls. Feel free to create a pull request adding any other methods you might need.
License
MIT
Copyright (c) 2015 Paul Jackson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.