axios-retry
Axios plugin that intercepts failed requests and retries them whenever posible.
Installation
npm install axios-retry
Usage
import axiosRetry from 'axios-retry';
axiosRetry(axios, { retries: 3 });
axios.get('http://example.com/test')
.then(result => {
result.data;
});
const client = axios.create({ baseURL: 'http://example.com' });
axiosRetry(client, { retries: 3 });
client.get('/test')
.then(result => {
result.data;
});
Options
Name | Type | Default | Description |
---|
retries | Number | 3 | The number of times to retry before failing |
retryCondition | Function | error => !error.response && error.code !== 'ECONNABORTED' | A callback to further control if a request should be retried. By default, it retries if the result did not have a response and the errorcode is not 'ECONNABORTED'. |
useIsRetryAllowed | Boolean | true | use the "is-retry-allowed" module additionally to the retryCondition function to determine if the request should be retried |
Testing
Clone the repository and execute:
npm test
Contribute
- Fork it:
git clone https://github.com/softonic/axios-retry.git
- Create your feature branch:
git checkout -b feature/my-new-feature
- Commit your changes:
git commit -am 'Added some feature'
- Check the build:
npm run build
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D