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

advanced-throttle-debounce

v1.0.9

Published

Advanced debounce/throttle with many useful features.

Downloads

14

Readme

advanced-throttle-debounce

NPM package which debounces/throttles a function so that it is not called too often. Supports many useful features.

This library:

  • is well tested;
  • supports both sync and async functions;
  • supports functions that return a value or a Promise or throw an error;
  • can differentiate attempts by arguments, 'this' context, similar 'this' context, similar arguments;
  • has rich options for all your needs (otherwise create an issue);
  • supports TypeScript;
  • does not have any dependencies.

Terminology used in this documentation

  • debounce (debounced) - used interchangeably with 'throttle' unless specified otherwise.
  • ATTEMPT - an attempt to call a debounced function.
  • CALL - a real call to function.
  • ATTEMPT GROUP - a group of attempts that are divided by the 'wait' time and sometimes forced to divide because of the 'maxWait' time.
  • LEADING CALL - the call in the beginning of an attempt group (simultaneously with LEADING ATTEMPT).
  • TRAILING CALL - the call in the end of an attempt group. 'wait' time after the last ATTEMPT in the group.
  • DIVIDING CALL - the call which divides too long groups of attempts into smaller groups by the 'maxWait' time (if it is provided in options).

Features

  • Choose between TRAILING and LEADING calls or choose them both – in this case the function will be CALLED twice except when there was only one ATTEMPT (can be overriden by 'forceDoubleCallEvenIfAttemptedOnlyOnes' flag).
  • Choose the 'wait' time between ATTEMPTS in which they will be grouped.
  • Choose the 'maxWait' time after which the ATTEMPT GROUP will be divided into smaller groups in order to avoid never-called situations.
  • Both async and sync functions can return a value. This means that all ATTEMPTS are able to get a returned value. In all cases a Promise is returned by debounced function. If sync function throws an error, the Promise will be rejected.
  • Choose whether the ATTEMPT should be considered as different if the arguments are different.
  • Choose whether the ATTEMPT should be considered as different if the 'this' context is different.
  • Choose whether the ATTEMPT should be considered as different if the 'this' context is an equal (similar) object but not the same.
  • Choose whether the ATTEMPT should be considered as different if objects in arguments are similar but not the same.

Coming soon

  • changing of default options
  • cancellation of TRAILING CALL before it is called. May be useful
  • clearing of all ATTEMPTS and ATTEMPT GROUPS
  • clearing of all ATTEMPTS for specific arguments and 'this' context

Install

npm install advanced-throttle-debounce

Usage

This tests are ran in order to check the library. They are a good source of examples.

Basic usage with default options (debounce)

import { debounce } from 'advanced-throttle-debounce';
/* OR:
const { debounce } = require('advanced-throttle-debounce');
*/

function functionToDebounce(arg1, arg2) {
  console.log('functionToDebounce called');
  return arg1 + arg2;
}

const debouncedFunction = debounce(functionToDebounce, { wait: 1000 });

const result1 = debouncedFunction(1, 2);
const result2 = debouncedFunction(3, 4);
const result3 = debouncedFunction(1, 2);
// All results contain promises now
// result1 === result3

result1.then((result1) => {
  console.log(result1); // 3
});

result2.then((result2) => {
  console.log(result2); // 7
});

result3.then((result3) => {
  console.log(result3); // 3
});

/* Full output:
functionToDebounce called
7
functionToDebounce called
3
3
*/

As you can see, the function was called twice instead of thrice. Debouncer grouped the first and the third calls into one ATTEMPT GROUP and called the function only once. The second call was placed into another ATTEMPT GROUP because of different arguments (this is the default behaviour which can be changed by providing options).

API

debounce(func, options)

Creates a debounced function that delays invoking func until after "wait" milliseconds have elapsed since the last time the debounced function was invoked. This descibes the default behaviour which can be changed by providing options.

Options

option | type, default | description --- | --- | --- leading | boolean, false | Should the function be called on the leading edge? trailing | boolean, true | Should the function be called on the trailing edge? wait | number, 1000 | The time in ms between attempts in milliseconds which is deviding the attempts into groups. maxWait | number, Infinity | The maximum length of the attempt group in ms. differentArgs | boolean, true | Should the attempt be considered as different if the arguments are different? differentThis | boolean, true | Should the attempt be considered as different if the 'this' context is different? treatSimilar ContextAsTheSame (one long word) | boolean, false | Should the attempt be considered as different if the 'this' context is similar? treatSimilar ArgsAsTheSame (one long word) | boolean, false | Should the attempt be considered as different if objects in arguments are similar but not the same? forceDoubleCall EvenIfAttempted OnlyOnes (one long word) | boolean, false | Should the function be called twice if it was attempted only ones. By default if both 'leading' and 'trailing' are true, than only LEADING CALL will be called if there was only one attempt?