Package Exports
- superagent-promise-plugin
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 (superagent-promise-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
superagent-promise
Plugin for visionmedia/superagent. Use req.then or req['catch'] to execute your request and handle via promises.
Install
npm install superagent superagent-promise-plugin --saveHow to use
Requires ES6 Promises. Polyfill or set superagentPromisePlugin.Promise with es6-promise or equivalent.
var request = require('superagent');
var superagentPromisePlugin = require('superagent-promise-plugin');
superagentPromisePlugin.Promise = require('es6-promise');
request.get('/end/point')
.use(superagentPromisePlugin)
.then(function (res) {
// success
})
.catch(function (err) {
// error
var res = err.response; // the full response object
});Patching superagent
Patch the superagent module so that every request has req.then and req['catch'] methods.
require('es6-promise').polyfill();
var superagentPromisePlugin = require('superagent-promise-plugin');
var request = superagentPromisePlugin.patch(require('superagent'));
request.get('/end/point')
.then(function (res) {
// success
})
.catch(function (err) {
// error
});