bot18
Version:
A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f
79 lines (43 loc) • 1.65 kB
Markdown
or async function
```
$ npm install --save p-retry
```
```js
const pRetry = require('p-retry');
const fetch = require('node-fetch');
const run = () => fetch('https://sindresorhus.com/unicorn')
.then(response => {
// abort retrying if the resource doesn't exist
if (response.status === 404) {
throw new pRetry.AbortError(response.statusText);
}
return response.blob();
});
pRetry(run, {retries: 5}).then(result => {});
```
Returns a `Promise` that is fulfilled when calling `input` returns a fulfilled promise. If calling `input` returns a rejected promise, `input` is called again until the max retries are reached, it then rejects with the last rejection reason.
It doesn't retry on `TypeError` as that's a user error.
Type: `Function`
Receives the number of attempts as the first argument and is expected to return a `Promise` or any value.
Type: `Object`
Options are passed to the [`retry`](https://github.com/tim-kos/node-retry#retryoperationoptions) module.
Abort retrying and reject the promise.
Type: `string`
Error message.
Type: `Error`
Custom error.
- [p-timeout](https://github.com/sindresorhus/p-timeout) - Timeout a promise after a specified amount of time
- [More…](https://github.com/sindresorhus/promise-fun)
MIT © [Sindre Sorhus](https://sindresorhus.com)
> Retry a promise-returning