Skip to main content

Command Palette

Search for a command to run...

Today's npm package: reinterval

Published
1 min read
Today's npm package: reinterval

Today's npm package is reintereval

Some times in an application, you might have to do certain tasks repeatedly. Obvious solution is setInterval

Though as the project and related solution expands, it becomes bigger and harder to manage.

And, reintereval is going to help us in this direction.

It allows to create, stop and restart such interval tasks with just one instance and effectively increases the readability.

Let's see how to use it:

const reinterval = require('reinterval');

const poller = reinterval(() => {
  console.log('Hello', new Date());
}, 3500);

setTimeout(() => {
  console.log('cleared')
  poller.clear()
}, 15000);

setTimeout(() => {
  console.log('rescheduled')
  poller.reschedule(1000)
}, 16000);

setTimeout(() => {
  console.log('destroyed')
  poller.destroy()
}, 19000)

See it in action here: https://runkit.com/pankaj/reintereval

Stay tuned for tomorrow's package of the Day.

More from this blog

P

Pankaj Patel - @heypankaj_

63 posts

Sharing my learnings and thoughts on Blogging, Personal Branding and Programming