Taras Mankovski
Taras Mankovski
* [retry-request](https://www.npmjs.com/package/retry-request) has 6,000,000+ weekly downloads - https://github.com/googleapis/retry-request/blob/main/index.js#L73-L262 * [requestretry](https://www.npmjs.com/package/requestretry) has 250,000+ weekly downloads https://github.com/FGRibreau/node-request-retry/blob/master/index.js#L166-L194 * [retry-fetch](https://www.npmjs.com/package/fetch-retry) has 5,000,000+ weekly downloads - https://github.com/jonbern/fetch-retry/blob/master/index.js#L63-L131 `retry-fetch` is perhaps the closest to what...
> saying, after 5 seconds, we will stop fetching and let it run the rest of the while loop, but it won't do another cycle? It's worth a try. The...
Yeah, that looks good. I'm going to put together a small test to see how it behaves
@minkimcello I found an interesting library called [abort-controller-x](https://classic.yarnpkg.com/en/package/abort-controller-x) for composing abort controller aware asyncronous functions. Interestingly, they wrote the code the same way you did in your example. The point...
@minkimcello I think we can make that example much simpler. 1. we should use `run` here instead of `main` 2. the action is not needed 3. instead of setTimeout, we...
We figured it out. It's a missing yield in front of race
We can use questions from the [3.0 announcement post on Reddit for inspiration](https://www.reddit.com/r/javascript/comments/18lfk92/comment/ke97xrh/).
Can you please merge this and publish to NPM?
@monocle I'm already using your dev branch. > Also, I haven't tested anything with IndexedDBShim. Right now, the best native support for IndexedDB is through > Chrome. (For testing, I...
@ebryn I will, but with a bit more experience, I'm realizing that what seemed like inconsistencies is actually using the library differently than it was designed. I started off working...