A Javascript library created to help manage repeated tasks
yarn install
import TaskRepeater from 'task-repeater';
const job1 = TaskRepeater()
.do(() => { /*...*/ })
.every(1000)
.start();
const job2 = TaskRepeater()
.do(() => { /*...*/ })
.do(() => { /*...*/ })
.for(5) // times
.every(2_000) // interval in miliseconds
.delay(1_000) // initial delay in miliseconds
.start();
job1.stop(); // stops the repetitive calls
job1.reset(); // resets the counter as if it isn't invoked
👤 Omid Astaraki [email protected]
- Github: @electather
- LinkedIn: @omid-astaraki
this package is based on Repeatr library developed by @theshem.
Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.
Give a ⭐️ if this project helped you!
Copyright © 2021 Omid Astaraki [email protected].
This project is MIT licensed.