limiter-component

Limits the rate of function calls to one per period. It delays but does not throttle the calls.

Usage no npm install needed!

<script type="module">
  import limiterComponent from 'https://cdn.skypack.dev/limiter-component';
</script>

README

NPM version Build Status Dependency Status

limiter

Limits the rate of function calls to one per period. It delays but does not throttle the calls. Useful when your codes needs to behave well when calling rate limited API.

If you need something more flexible use rate limiter

Installation

$ npm install --save limiter-component

Usage

Create limiter with desired interval setting. Call trigger passing a function that you want to limit.

var limiter = require('limiter'),
    l = limiter(500); // interval in millis

function doThis() {
  // this is called at most twice per second
}

function doThat() {
  // you can rate limit different functions
}


l.trigger(doThis);
l.trigger(doThat);
l.trigger(doThis);
l.trigger(function() {
    l.penalty(); // wait a bit longer the next time
});
l.trigger(doThat);
l.trigger(function() {
    l.skip(); // don't wait at all the next time
});
l.trigger(doThis);

API

limiter(interval, [penaltyInterval])

Create limiter with desired interval (in millis). Optional penaltyInterval is used instead of interval if limiter.penalty() has been called at least once since last limited function has been triggered.

trigger(fn)

Add fn to limiter queue. It will be called when interval elapsed since another function from the queue was called.

penalty()

Make limiter use penaltyInterval before triggering next function.

skip()

Make limiter trigger next function immediately.

cancel()

Empty limiter queue. Remove all pending trigger request. No methods from the queue is called after cancel.

License

MIT