Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Videodock/superagent-jsonp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

superagent-jsonp

Adds jsonp behaviour to superagent.

To use with browserify

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
  });

To use with bower

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
});

About

Wrap jsonp in a nice superagent wrapper.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%