npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

function-repeater

v1.2.0

Published

Repeater allows u to start, stop, and restart repeating invocations of your functions

Downloads

19

Readme

repeater

about

Repeater allows u to start, stop, and restart repeating invocations of your functions

let queryRepeater = new Repeater(doQuery, 100, true);
let queryRepeater = new Repeater(doQuery);
queryRepeater.setPeriod(100);
queryRepeater.start();

simple example

const Repeater = require('function-repeater');

let i = 0;
let add1 = () => i++;
let subtract3 = () => i -= 3;

let accumulation = [];
let accumulate = () => accumulation.push(i);

let repeaterA = new Repeater(add1, 300, true);
let repeaterB = new Repeater(add1, 900, true);
let repeaterC = new Repeater(subtract3, 1800, true);
let repeaterD = new Repeater(subtract3);
let accumulateRepeater = new Repeater(accumulate, 300, true);
setTimeout(() => {
    repeaterA.stop();
    repeaterB.stop();
    repeaterD.start(300);
    accumulate();
}, 2400);
setTimeout(() => {
    repeaterC.stop();
    repeaterD.stop();
    accumulateRepeater.stop();
    console.log(accumulation); // [-1, 0, 1, 3, 4, 5, 4, 5, 6, 3, 3, 0, -3]
}, 3100);

Output explained

-1 // +1 (A) +1 (B) -3 (C) @ 0ms
0 // +1 (A) @ 300ms
1 // +1 (A) @ 600ms
3 // +1 (A) +1 (B) @ 900ms
4 // +1 (A) @ 1200ms
5 // +1 (B) @ 1500ms
4 // +1 (A) +1 (B) -3 (C) @ 1800ms
5 // +1 (A) @ 2100ms
6 // +1 (A) @ 2400ms
// A & B stopped, D started @ 2400ms
3 // -3 (D) @ 2400ms
0 // -3 (D) @ 2700ms
-3 // -3 (D) @ 3000ms
// C & D stopped @ 3100ms

api

new Repeater(function handler, integer period, boolean start)

Creates a new repeater that will invoke handler every period milliseconds. If period is omitted, it will default to 0. If start is truthy, the repeater will automatically invoke it's start method (see below).

setHandler(function handler)

Sets the handler which will be invoked when the repeater is started. If the repeater is in progress, the new handler will not take affect until the repeater is stopped and restarted.

setPeriod(integer period)

Update's the repeaters period. If the repeater is in progress, the new period will not take affect until the repeater is stopped and restarted.

start(integer period)

Starts the repeater with the specified period or the current period. If the repeater is in progress, it is stopped and restarted.

stop()

Stops the repeater.

handler paramters

The handler is passed in two paramters, the repeater itself, and an incrementing index;

new Repeater(
    (repeater, i) => {
        console.log(i); // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
        if (i === 10)
            repeater.stop();
    }, 10, true);