Adds jsonp behaviour to superagent.
First install with npm
npm i superagent-jsonp --save
Then use like so;
var superagent = require('superagent');
let jsonp = require('superagent-jsonp');
superagent
.get('http://example.com/foo.json')
.timeout(10000)
.use(jsonp())
.end(function(err, res){
// everything is as normal
});
First install:
bower i superagent-jsonp --save
Include it from your bower components in the usual way
Then use pretty much as you do above
superagent.get('http://example.com/foo.json').use(superagentJSONP()).end(function(err, res){
// everything is as normal
});