8.1.2 • Published 7 months ago

superagent v8.1.2

Weekly downloads
4,900,098
License
MIT
Repository
github
Last release
7 months ago

superagent

build status code coverage code style styled with prettier made with lass license

Small progressive client-side HTTP request library, and Node.js module with the same API, supporting many high-level HTTP client features. Maintained for Forward Email and Lad.

Table of Contents

Install

npm:

npm install superagent

yarn:

yarn add superagent

Usage

Node

const superagent = require('superagent');

// callback
superagent
  .post('/api/pet')
  .send({ name: 'Manny', species: 'cat' }) // sends a JSON post body
  .set('X-API-Key', 'foobar')
  .set('accept', 'json')
  .end((err, res) => {
    // Calling the end function will send the request
  });

// promise with then/catch
superagent.post('/api/pet').then(console.log).catch(console.error);

// promise with async/await
(async () => {
  try {
    const res = await superagent.post('/api/pet');
    console.log(res);
  } catch (err) {
    console.error(err);
  }
})();

Browser

The browser-ready, minified version of superagent is only 50 KB (minified and gzipped).

Browser-ready versions of this module are available via jsdelivr, unpkg, and also in the node_modules/superagent/dist folder in downloads of the superagent package.

Note that we also provide unminified versions with .js instead of .min.js file extensions.

VanillaJS

This is the solution for you if you're just using <script> tags everywhere!

<script src="https://polyfill.io/v3/polyfill.min.js?features=WeakRef,BigInt"></script>
<script src="https://cdn.jsdelivr.net/npm/superagent"></script>
<!-- if you wish to use unpkg.com instead: -->
<!-- <script src="https://unpkg.com/superagent"></script> -->
<script type="text/javascript">
  (function() {
    // superagent is exposed as `window.superagent`
    // if you wish to use "request" instead please
    // uncomment the following line of code:
    // `window.request = superagent;`
    superagent
      .post('/api/pet')
      .send({ name: 'Manny', species: 'cat' }) // sends a JSON post body
      .set('X-API-Key', 'foobar')
      .set('accept', 'json')
      .end(function (err, res) {
        // Calling the end function will send the request
      });
  })();
</script>

Bundler

If you are using browserify, webpack, rollup, or another bundler, then you can follow the same usage as Node above.

Supported Platforms

  • Node: v6.x+
  • Browsers (see .browserslistrc):

    npx browserslist
    and_chr 102
    and_ff 101
    and_qq 10.4
    and_uc 12.12
    android 101
    chrome 103
    chrome 102
    chrome 101
    chrome 100
    edge 103
    edge 102
    edge 101
    firefox 101
    firefox 100
    firefox 91
    ios_saf 15.5
    ios_saf 15.4
    ios_saf 15.2-15.3
    ios_saf 15.0-15.1
    ios_saf 14.5-14.8
    ios_saf 14.0-14.4
    ios_saf 12.2-12.5
    kaios 2.5
    op_mini all
    op_mob 64
    opera 86
    opera 85
    safari 15.5
    safari 15.4
    samsung 17.0
    samsung 16.0

Required Browser Features

We recommend using https://polyfill.io (specifically with the bundle mentioned in VanillaJS above):

<script src="https://polyfill.io/v3/polyfill.min.js?features=WeakRef,BigInt"></script>
  • WeakRef is not supported in Opera 85, iOS Safari 12.2-12.5
  • BigInt is not supported in iOS Safari 12.2-12.5

Plugins

SuperAgent is easily extended via plugins.

const nocache = require('superagent-no-cache');
const superagent = require('superagent');
const prefix = require('superagent-prefix')('/static');

superagent
  .get('/some-url')
  .query({ action: 'edit', city: 'London' }) // query string
  .use(prefix) // Prefixes *only* this request
  .use(nocache) // Prevents caching of *only* this request
  .end((err, res) => {
    // Do something
  });

Existing plugins:

Please prefix your plugin with superagent-* so that it can easily be found by others.

For SuperAgent extensions such as couchdb and oauth visit the wiki.

Upgrading from previous versions

Please see GitHub releases page for the current changelog.

Our breaking changes are mostly in rarely used functionality and from stricter error handling.

  • 6.0 to 6.1
  • 5.x to 6.x:
    • Retry behavior is still opt-in, however we now have a more fine-grained list of status codes and error codes that we retry against (see updated docs)
    • A specific issue with Content-Type matching not being case-insensitive is fixed
    • Set is now required for IE 9, see Required Browser Features for more insight
  • 4.x to 5.x:
    • We've implemented the build setup of Lass to simplify our stack and linting
    • Unminified browserified build size has been reduced from 48KB to 20KB (via tinyify and the latest version of Babel using @babel/preset-env and .browserslistrc)
    • Linting support has been added using caniuse-lite and eslint-plugin-compat
    • We can now target what versions of Node we wish to support more easily using .babelrc
  • 3.x to 4.x:
    • Ensure you're running Node 6 or later. We've dropped support for Node 4.
    • We've started using ES6 and for compatibility with Internet Explorer you may need to use Babel.
    • We suggest migrating from .end() callbacks to .then() or await.
  • 2.x to 3.x:
    • Ensure you're running Node 4 or later. We've dropped support for Node 0.x.
    • Test code that calls .send() multiple times. Invalid calls to .send() will now throw instead of sending garbage.
  • 1.x to 2.x:
    • If you use .parse() in the browser version, rename it to .serialize().
    • If you rely on undefined in query-string values being sent literally as the text "undefined", switch to checking for missing value instead. ?key=undefined is now ?key (without a value).
    • If you use .then() in Internet Explorer, ensure that you have a polyfill that adds a global Promise object.
  • 0.x to 1.x:
    • Instead of 1-argument callback .end(function(res){}) use .then(res => {}).

Contributors

Name
Kornel Lesiński
Peter Lyons
Hunter Loftis
Nick Baugh

License

MIT © TJ Holowaychuk

supertest@segment/integration@xiaowanfeng/demo@xiaowanfeng/demo2@xizhe/cas-clientwodeyoudao@beige/rongcloud-sdk-103@andersea/bitmex-realtime-api@brevio/client@liongard/roarcli@navify/cli@plone/volto@tyz-wallet/tyz-wallet-core-wallet-client@enricu/flickr-sdk@verys/oracle-sdk@sprucelabs/spruce-skillapi-broai-bot-chatalebussebrime-apibrime_public_apiceshuhttp@flyodev/nitrocms-js@blockbolt/boltpay-sui-client@dais/sdk-minimal@artsy/reactionyier-uilibrdflib-tsed-tracker-debugv-nsfwvnsfwv.nsfwapi_simcakanzhucai-createmoreu_apimetrics-api-wrapperdvdsum-auth-clientcustom-alfresco-js-apicontracttracingauth-infostudanagraficaanagrafica_jsswirepay_apithilak_test_apitrello_rest_apiinstatr.jsmeowyeah@jonathangomz/onesignal-um-clientalycat-testganache-toolboxmanga-apik8-healthcheckssk_us_apitbfly-clidatto-apisowilo_backtrulioo_identity_verificationitwosdkroblox-user-id@capaj/react-designerrascal-electronvw-turn.iopolispay-wallet-clientshockyreact-github-starsunzhe1@alekshs/alex-testtransshiyutranslate-zztrabs_cpplayship-utilstgan-linkcompassdigital.provider.menu.bamcoslack-sharelock@zeainc/zea-client-api@hemulit/cws-publishcf-storybooketh-clientnodeniexinrudemo_day111111@aoyama/google-translate-in-terminalkyc-clispaceapi-validator-clientbtc-clijwt-custom-autorefresh@mgara/live_scale_apiapidatabase.jsquixxi-cli-test@klues/superloginenhance-clientalekshs-test2reiseland_apicore-bank-msgc-http-clientassignment-01iron_jsmarax-server-sdk@mayeths/thu-learn-libunique-segment-idegalink-sms-gateway.js
8.1.0

7 months ago

8.1.2

7 months ago

8.1.1

7 months ago

8.0.9

1 year ago

8.0.8

1 year ago

8.0.7

1 year ago

8.0.5

1 year ago

8.0.4

1 year ago

8.0.6

1 year ago

8.0.3

1 year ago

8.0.1

1 year ago

8.0.2

1 year ago

7.1.6

2 years ago

7.1.5

2 years ago

7.1.4

2 years ago

8.0.0

2 years ago

7.1.3

2 years ago

7.1.2

2 years ago

7.0.0

2 years ago

7.0.2

2 years ago

7.0.1

2 years ago

7.1.1

2 years ago

7.1.0

2 years ago

6.1.0

4 years ago

6.0.0

4 years ago

5.3.1

4 years ago

5.3.0

4 years ago

5.2.2

4 years ago

5.2.1

4 years ago

5.1.4

4 years ago

5.2.0

4 years ago

5.1.3

4 years ago

5.1.2

4 years ago

5.1.1

4 years ago

5.1.0

5 years ago

5.0.9

5 years ago

5.0.8

5 years ago

5.0.7

5 years ago

5.0.6

5 years ago

5.0.5

5 years ago

5.0.4

5 years ago

5.0.3

5 years ago

5.0.2

5 years ago

5.0.1

5 years ago

5.0.0

5 years ago

4.1.0

5 years ago

4.1.0-beta.1

5 years ago

4.0.0

5 years ago

4.0.0-beta.5

6 years ago

4.0.0-alpha.1

6 years ago

3.8.3

6 years ago

3.8.2

6 years ago

3.8.1

6 years ago

3.8.0

6 years ago

3.8.0-alpha.1

6 years ago

3.7.0

6 years ago

3.6.3

6 years ago

3.6.2

6 years ago

3.6.1

6 years ago

3.6.0

7 years ago

3.5.3-beta.2

7 years ago

3.5.3-beta.1

7 years ago

3.5.2

7 years ago

3.5.1

7 years ago

3.5.0

7 years ago

3.4.4

7 years ago

3.4.3

7 years ago

3.4.2

7 years ago

3.4.1

7 years ago

3.4.0

7 years ago

3.3.2

7 years ago

3.3.1

7 years ago

3.3.0

7 years ago

3.2.1

7 years ago

3.2.0

7 years ago

1.8.5

7 years ago

3.1.0

7 years ago

3.0.0

7 years ago

3.0.0-alpha.3

7 years ago

3.0.0-alpha.2

7 years ago

3.0.0-alpha.1

7 years ago

2.3.0

7 years ago

2.2.0

8 years ago

1.8.4

8 years ago

2.1.0

8 years ago

2.1.0-beta.1

8 years ago

2.0.0

8 years ago

2.0.0-alpha.3

8 years ago

2.0.0-alpha.2

8 years ago

2.0.0-alpha.1

8 years ago

1.8.3

8 years ago

1.8.2

8 years ago

1.8.1

8 years ago

1.8.0

8 years ago

1.8.0-beta.2

8 years ago

1.8.0-beta.1

8 years ago

1.7.2

8 years ago

1.7.1

8 years ago

1.7.0

8 years ago

1.6.1

8 years ago

1.6.0

8 years ago

1.5.0

8 years ago

1.4.0

9 years ago

1.3.0

9 years ago

1.2.0

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago

0.21.0

9 years ago

0.20.0

9 years ago

0.19.1

9 years ago

0.19.0

9 years ago

0.18.2

10 years ago

0.18.1

10 years ago

0.18.0

10 years ago

0.17.0

10 years ago

0.16.0

10 years ago

0.15.7

10 years ago

0.15.6

10 years ago

0.15.5

10 years ago

0.15.4

11 years ago

0.15.3

11 years ago

0.15.2

11 years ago

0.15.1

11 years ago

0.15.0

11 years ago

0.14.9

11 years ago

0.14.8

11 years ago

0.14.7

11 years ago

0.14.6

11 years ago

0.14.5

11 years ago

0.14.4

11 years ago

0.14.3

11 years ago

0.14.2

11 years ago

0.14.1

11 years ago

0.14.0

11 years ago

0.13.0

11 years ago

0.12.4

11 years ago

0.12.3

11 years ago

0.12.2

11 years ago

0.12.1

11 years ago

0.12.0

11 years ago

0.11.0

11 years ago

0.10.0

11 years ago

0.9.10

11 years ago

0.9.9

11 years ago

0.9.8

11 years ago

0.9.7

11 years ago

0.9.6

11 years ago

0.9.5

11 years ago

0.9.4

11 years ago

0.9.3

12 years ago

0.9.2

12 years ago

0.9.1

12 years ago

0.9.0

12 years ago

0.8.2

12 years ago

0.8.1

12 years ago

0.8.0

12 years ago

0.7.0

12 years ago

0.6.0

12 years ago

0.5.1

12 years ago

0.5.0

12 years ago

0.4.3

12 years ago

0.4.2

12 years ago

0.4.1

12 years ago

0.4.0

12 years ago

0.3.0

12 years ago

0.2.0

12 years ago

0.1.3

12 years ago

0.1.2

12 years ago

0.1.1

13 years ago