
Product
Introducing Socket Scanning for OpenVSX Extensions
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.
@comparaonline/backoff
Advanced tools
Simple backoff method to retry failed observables.
It takes two arguments, maxTries and ms, the amount of attempts and the number of
milliseconds that will be waited after the first failure. Any successive attempts
the method will backoff for the specified ms times the next power of 2
import { from } from 'rxjs';
import { backoff } from '@comparaonline/backoff';
const result = from(axios('http://sometimesfails.com')).pipe(
backoff(3, 10000)
).toPromise();
result will either resolve correctly or retry two more times if it fails,
waiting 10 seconds the first time, and 40 the second time. If it fails a third
time, it will be rejected.
FAQs
Simple method to retry and backoff an observable with errors
We found that @comparaonline/backoff demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 16 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies