Coder Social home page Coder Social logo

debounce-callback's Introduction

Table of contents

Introduction

  • debounceCallback works similar to useDebounceCallback hook in @react-hook/debounce library. However debounceCallback is not a hook in react.
  • debounceCallback can work in the backend-node and in other frameworks like ReactJs, VueJs, React Native,....
  • Module : CommonJs

How to use ?

Example 1 - Typescript/NodeEnvironment

import { sleep } from 'sakura-time-service';
import { debounceCallback } from 'debounce-callback';

async function main(){
    const sums:number[] = [];

    const calcSumDebounce = debounceCallback(async (a: number, b: number) => {
        sums.push(a + b);
    }, 600); // wait 600 ms


    for (let i = 0; i < 10; i++) {
        calcSumDebounce(5, i);
        await sleep(100); // waiting for 100 ms
    }

    // latest invoke
    calcSumDebounce(5, 10);
    
    await sleep(1000); // waiting for 1000 ms

    console.log('sums =', sums); // sums = [ 15 ]
}

main();

Example 2 - Javascript/NodeEnvironment

const { sleep } = require('sakura-time-service');
const { debounceCallback } = require('debounce-callback');

async function main(){
    const sums = [];

    const calcSumDebounce = debounceCallback(async (a, b) => {
        sums.push(a + b);
    }, 600); // wait 600 ms


    for (let i = 0; i < 10; i++) {
        calcSumDebounce(5, i);
        await sleep(100); // waiting for 100 ms
    }

    // latest invoke
    calcSumDebounce(5, 10);
    
    await sleep(1000); // waiting for 1000 ms

    console.log('sums =', sums); // sums = [ 15 ]
}

main();

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.