Package Exports
- http-get-shim
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (http-get-shim) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
HTTP(S)-GET shim
Request-like module for HTTP(S) gets. Only contains the bare minimum for gets.
The requested url can be a string or an option, as the node http core api goes, the only added option is the maximum number of redirects the request can make, which you can add to the options-object as the property maxRedirects
and a Number
as the value (defaults to 5).
Automatically selects http or https based on the requested url, or the options object.
Usage
Install: npm install http-get-shim
Require: var httpGet = require('http-get-shim');
Example:
httpGet('http://google.com', function (err, response, data) {
if (!err && response.statusCode === 200) {
console.log(data);
} else {
console.log(response.statusCode, err);
}
});