You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

superagent-jsonp

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

superagent-jsonp

Wrap a sweet jsonp filling in a savoury superagent wrapper

0.2.1
latest
Source
npmnpm
Version published
Weekly downloads
4.7K
-9.4%
Maintainers
1
Weekly downloads
 
Created
Source

superagent-jsonp

CircleCI bitHound Overall Score

Adds jsonp behaviour to superagent.

To use with browserify

First install with npm

npm i superagent-jsonp --save

Then use like so;

const superagent = require('superagent');
const jsonp = require('superagent-jsonp');
superagent.get('http://example.com/foo.json').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
});

Available options for the jsonp function

  • callbackParam: The name of the query parameter that contains the function name to call. Defaults to callback.
  • callbackName: Optional. The name of the callback function
  • timeout: How long to wait until this is considered to be an unsuccessful request.
    • Note: all unsuccessful requests are currently treated as 404s

Usage

superagent
  .get('http://example.com/obviously_404.json').use(jsonp({
      timeout: 3000,
      callbackName: 'someOtherName'
    })).end((err, response) => {
      // response => {}
      // err => new Error('404 NotFound')
    });

Keywords

jsonp

FAQs

Package last updated on 16 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts