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.
@avinlab/repeat
Advanced tools
Make repeat actions easily.
# Yarn
yarn add @avinlab/repeat
# NPM
npm install --save @avinlab/repeat
import repeat from '@avinlab/repeat';
const repeatAction = repeat({
action: counter => {
console.log(counter);
},
delay: 500,
firstTimeDelay: 1000,
skipFirst: true,
});
// Start interval actions
repeatAction.start();
// Stop interval actions
repeatAction.stop();
action
(Function) - Interval function. Params: counter
- call action index number.delay
(Number) - Sleep time in ms between actions.firstTimeDelay
(Number) - First time sleep period in ms.skipFirst
(Boolean) - Skip first time action call.times
(Number) - Repeat N times.start()
- Start repeat actions.stop()
- Stop repeat actions.pause()
- Pause repeat actions (without reset counter and don't touch firstTimeRun flag).resume()
- Resume repeating after pause.updateDelay(newDelay)
- Update option delay value without restart (update with next tick).MIT © avin
FAQs
Make repeat actions easily
The npm package @avinlab/repeat receives a total of 4 weekly downloads. As such, @avinlab/repeat popularity was classified as not popular.
We found that @avinlab/repeat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.