Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@scoir/async-throttler
Advanced tools
This utility will delay the resolution of a promise until a delay has elapsed. It also exposes state of the passed promise so that ui events can be keyed off that.
This utility will delay the resolution of a promise until a delay has elapsed. It also exposes state of the passed promise so that ui events can be keyed off that.
Pass in your state update handler so that you can receive throttler updates. Returns a throttler instance
import asyncThrottler from '@scoir/async-throttler';
class ExampleComp extends React.Component {
componentWillMount () {
this.throttler = asyncThrottler.create(state => this.setState(state))
}
...
}
When the throttler state changes, it will execute the callback that was passed into the create function. That object looks like this:
{
isProcessing: <boolean>,
isProcessed: <boolean>,
isComplete: <boolean>,
isError: <boolean>,
}
Pass in the promise you would like to throttle and an optional delay (default is 700ms)
this.throttler.execute(this.doAsync());
this.throttler.execute(this.doAsync(), 1000);
Restores the throttler instance state back to its initial state.
this.throttler.reset();
{
isProcessing: false,
isProcessed: false,
isComplete: false,
isError: false,
}
FAQs
This utility will delay the resolution of a promise until a delay has elapsed. It also exposes state of the passed promise so that ui events can be keyed off that.
The npm package @scoir/async-throttler receives a total of 41 weekly downloads. As such, @scoir/async-throttler popularity was classified as not popular.
We found that @scoir/async-throttler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 36 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.