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

fire-once

v0.0.6

Published

Javascript library that ensures that an irregularly but frequently event triggered function is fired only once at the given period.

Downloads

33

Readme

fire-once

npm package GitHub release (latest by date) downloads License: MIT

Javascript library that ensures that an irregularly but frequently event triggered function is fired only once at the given period

Can also fire at the end of the defined period of time again, if the function was called at least twice. This can be very helpful to improve performance by ignoring superfluous, too frequent events but always processing the last call of the event.

Available for node js and browser!

Contents

Examples

Demonstration

If the fire function was called 50 times within one second (period: 1000), it will actually called only two times: It will be immediately be called at the first call and then once again after 1000ms.

const helloWorld = (name, number) => {
    console.log(`Hello ${name}, you are number ${number}!`);
}

for (let i = 1; i <= 50; ++i) {
    FireOnce.fire("hello_world_unique_id", () => {
        helloWorld("Peter", i);
    }, {period: 1000, fire_after: true});
}

//    0ms => Hello Peter, you are number 1!
// 1000ms => Hello Peter, you are number 50!

Scroll event

In this example we want to limit the scroll event to be only fired a maximum of twice per second.

addEventListener("scroll", (event) => {
    FireOnce.fire("scroll_limiter", () => {
        console.log("Scrolling ...");
    }, {period: 500});
});

//   0ms => Scrolling ...
// 500ms => Scrolling ...

Several event sources

By specifying a unique identifier, you can also combine several event sources.

const myEventTriggeredFun = () => {
    console.log("Triggered!");
};

element.on("click", (event) => {
    FireOnce.fire("my_event_limiter", myEventTriggeredFun, {period: 500});
});

WebSocket.on("push", (event) => {
    FireOnce.fire("my_event_limiter", myEventTriggeredFun, {period: 500});
});

Installation

Option 1: node js - yarn

In your project root directory execute the following command:

yarn add fire-once

Option 2: node js - npm

In your project root directory execute the following command:

npm install fire-once

Option 3: Browser

fire-once is available in normal and minified version.

If you are unsure, us the normal version, that includes jsdocs and improves developer experience. The minified version is only intended for productive use.

Download the fire-once.js or fire-once.min.js at the release page and put it in an appropriate folder, e.g. js/lib and reference it with an script tag in your project:


<script type="text/javascript" src="js/lib/fire-once.js"></script>

If you are using a packager, you should add the source file to your build pipeline.

Documentation

  FireOnce.fire(identifier, func, options)

Options

| Option | Type | Default | Description | |----------|--------|---------|------------------------------------------------------------------------------------------------------| | period | number | 1000 | In which period should the given function fired once | | type | string | 'both' | 'both' Call the first and last call (if at least 2 calls) of the period at the beginning and the end. | | TODO: | | | 'start' Call only the first of the period at the beginning end surpress all calls until the end. | | TODO: | | | 'end' Call only the last call of the period at the end of the period. |

jsdoc

Check out the jsdoc documentation here.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/magynhard/fire-once. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.