4.1.0 • Published 1 month ago

axios-retry v4.1.0

Weekly downloads
875,524
License
Apache-2.0
Repository
github
Last release
1 month ago

axios-retry

Node.js CI

Axios plugin that intercepts failed requests and retries them whenever possible.

Installation

npm install axios-retry

Usage

// CommonJS
// const axiosRetry = require('axios-retry').default;

// ES6
import axiosRetry from 'axios-retry';

axiosRetry(axios, { retries: 3 });

axios.get('http://example.com/test') // The first request fails and the second returns 'ok'
  .then(result => {
    result.data; // 'ok'
  });

// Exponential back-off retry delay between requests
axiosRetry(axios, { retryDelay: axiosRetry.exponentialDelay });

// Custom retry delay
axiosRetry(axios, { retryDelay: (retryCount) => {
  return retryCount * 1000;
}});

// Works with custom axios instances
const client = axios.create({ baseURL: 'http://example.com' });
axiosRetry(client, { retries: 3 });

client.get('/test') // The first request fails and the second returns 'ok'
  .then(result => {
    result.data; // 'ok'
  });

// Allows request-specific configuration
client
  .get('/test', {
    'axios-retry': {
      retries: 0
    }
  })
  .catch(error => { // The first request fails
    error !== undefined
  });

Note: Unless shouldResetTimeout is set, the plugin interprets the request timeout as a global value, so it is not used for each retry but for the whole request lifecycle.

Options

NameTypeDefaultDescription
retriesNumber3The number of times to retry before failing. 1 = One retry after first failure
retryConditionFunctionisNetworkOrIdempotentRequestErrorA callback to further control if a request should be retried. By default, it retries if it is a network error or a 5xx error on an idempotent request (GET, HEAD, OPTIONS, PUT or DELETE).
shouldResetTimeoutBooleanfalseDefines if the timeout should be reset between retries
retryDelayFunctionfunction noDelay() { return 0; }A callback to further control the delay in milliseconds between retried requests. By default there is no delay between retries. Another option is exponentialDelay (Exponential Backoff). The function is passed retryCount and error.
onRetryFunctionfunction onRetry(retryCount, error, requestConfig) { return; }A callback to notify when a retry is about to occur. Useful for tracing and you can any async process for example refresh a token on 401. By default nothing will occur. The function is passed retryCount, error, and requestConfig.
onMaxRetryTimesExceededFunctionfunction onMaxRetryTimesExceeded(error, retryCount) { return; }After all the retries are failed, this callback will be called with the last error before throwing the error.

Testing

Clone the repository and execute:

npm test

Contribute

  1. Fork it: git clone https://github.com/softonic/axios-retry.git
  2. Create your feature branch: git checkout -b feature/my-new-feature
  3. Commit your changes: git commit -am 'Added some feature'
  4. Check the build: npm run build
  5. Push to the branch: git push origin my-new-feature
  6. Submit a pull request :D
@boundlessdigital/meraki-dashboard-api@microsoft/teamsfx-core@mindbox/frontend@muhammadwajidshahid/java-tron-provider@furucombo/composable-router-api@furucombo/composable-router-logics@salto-io/stripe-adapter@salto-io/netsuite-adapter@salto-io/adapter-components@thingspro-cloud/sdk@fern-api/stackonesome-typescript@psrjs/psr-axios@autofleet/node-commonshadow-blade-toolpi3-141592653589rn-api-clientshadow-bladeworkforce-recorder@coinspace/cs-eos-wallet@coinspace/cs-ethereum-wallet@coinspace/cs-ripple-wallet@coinspace/cs-stellar-wallet@coinspace/cs-wallet@amigocloud/js-clientprocore@foxford/foxford-jsweb-logger-libweb-logger-anlyticswb-uploader@piducancore/flowcl-node-api-clientpollinglibtegaki-image-editor@bumped-inc/bumped-api-client@greenactionstudio/plugpulse-sdktegaki-key-valuehyperzod-sdkhyperzod-sdk-js@airx/authcode@airx/sdkmdza-axiosreact-design-editor-test-rishrishtestt@octobay/adaptersnode-4anime-scraper@blockchain-api/connectorff-nodejs-server-sdkvue-json-layout@trieb.work/zoho-inventory-ts@chipdeals/chipdeals-momo-apichipdeals-momo-apiim-crawler@ezziepos-commerce/ezziepos-telemetry@leight-core/aio@leight-core/appzoopla-jsaxios-retry-proxy-poolcorbeappfaros-canonical-reportslg-thinqmi-crawl-systemtitles-workflow-server@iacoshoria/datastore@armindev/connect-sdkcorbeta@infinitebrahmanuniverse/nolb-axi@mvd/frodo-libcityscape-commoncoinstats-images-s3myfiteco-apinomercymediaserver3dtilesdownloaderntlango-client@everything-registry/sub-chunk-1196@slide-web3/relay-providermergn-test-sdkabyss_trip_coretest-open-network-telemetry-sdkfss-voice-recorder-plugin@stratuslive/smartystreets-javascript-sdk@icyphy/github-issue-junit@idct/axios-jwt-oobe-for-nuxt@ii887522/dynv6-ip-update-client@i3m/cloud-vault-client@hyperzod/hyperzod-sdk@hyperoracle/cle-api-test@hyperoracle/cle-cli-test@hyperoracle/zkgraph-api@hyperoracle/zkgraph-cli@instadapp/interop-node@instadapp/interop-x@instadapp/iga-node@infomaximum/base@indigo-labs/dexter@imohuan/crawler@hilma/fileshandler-native@heyooo-inc/backblaze-b2@harnessio/ff-nodejs-server-sdk@gsitm/core@haravan/cli
4.1.0

1 month ago

3.9.1

5 months ago

3.8.2

5 months ago

3.9.0

5 months ago

3.8.1

6 months ago

3.8.0

7 months ago

3.7.0

8 months ago

3.6.1

8 months ago

3.6.0

9 months ago

4.0.0

5 months ago

3.5.1

10 months ago

3.5.0

11 months ago

3.4.0

1 year ago

3.3.1

2 years ago

3.3.0

2 years ago

3.2.6

2 years ago

3.2.5

2 years ago

3.2.4

2 years ago

3.2.2

3 years ago

3.2.1

3 years ago

3.2.3

3 years ago

3.2.0

3 years ago

3.1.9

4 years ago

3.1.8

4 years ago

3.1.7

4 years ago

3.1.6

4 years ago

3.1.5

4 years ago

3.1.4

4 years ago

3.1.2

5 years ago

3.1.1

6 years ago

3.1.0

6 years ago

3.0.2

6 years ago

3.0.1

7 years ago

3.0.0

7 years ago

2.0.1

7 years ago

1.3.1

7 years ago

2.0.0

7 years ago

1.3.0

7 years ago

1.2.0

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago