easy-browser-request
v1.0.1
Published
An abstraction of basic-browser-request for use with async/await.
Downloads
3
Maintainers
Readme
easy-browser-request
An abstraction that wraps a promise around basic-browser-request so it can be used in async/await for those that want to use async/await. It also returns the error (in the style of https://github.com/scopsy/await-to-js) as well as the response and body.
These are provided in the hopes of:
- Discouraging (generally) bad patterns like ignoring the error or handling the error only in a single catch for several async operations
- Encouraging handling errors as they come and always thinking about errors when performing async operations
Does not support chunking and cancelling; use basic-browser-request directly for that.
Installation
npm install easy-browser-request
Usage
var easyR = require('easy-browser-request');
var { error, res, body } = await easyR({ method: 'GET', json: true, url: 'http://something.whatever/yeah' });
if (error) {
console.error(error.stack);
return;
}
console.log("Here's the goods:", body);
If you don't specify a mimeType, it defaults to application/json
and done()
will be passed a parsed JSON object.
Options:
url
: Required, the URL of the request.method
: Required, the http verb. e.g. 'GET', 'POST'.headers
: as per requestjson
: also as per request, parses response body into JSON when this is set to true.checkHTTPErrorCode
: If this is set to true, it will check the response status code and consider anything outside of the acceptable error code ranges to be an error. Accordingly, it will pass back an error object on fulfillment, if there was not already another (usually more serious) error.acceptableErrorCodeRanges
: This is an array of 2-element arrays. Each two-element array represents the lower and upper bounds (inclusive) of a http error code that easy-browser-request is to consider not an error. e.g[[200, 202], [404, 404]]
. The default is[[200, 299]]
.
The promise fulfillment delivers an object with three properties:
- error: An error object, if there was an error while making the request.
- response: An object containing the
statusCode
, thestatusMessage
,rawResponse
, andxhr
: XMLHttpRequest.response. This is not at all the same as a Node response, though, so proceed with caution. Thexhr
is the XMLHttpRequest used to run the request operation. - body: This is going to be a string or, if the mimeType was
application/json
, an object.
Tests
Run in Chrome and Firefox with make test
.
License
Copyright (c) 2019 Jim Kang
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 HE SOFTWARE.