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

rate-limiter-node

v1.0.1

Published

A simple way to rate limit how often a function is executed.

Downloads

4

Readme

Rate Limiter Node JS

A simple way to limit how often a function is executed.

Currently works with node.js v0.10.1+ (and probably lower).

Examples

If you want to limit all requests:

var limit = require("rate-limiter-node");
var request = limit(require("request")).to(10).per(1000);

userIds.forEach(function(userId) {
	var url = "http://anywebsite/users/" + userId;
	request(url, function(err, res, body) {
		/* ... Yay! Not a too-many-request-per-second error! ... */
	});
})

Or if you'd like to be a bit more fine grain and/or explicit:

var limit = require("rate-limiter-node");
var callApi = limit(function(userId, callback) {
	var url = "http://easily-overwhelmed-api.com/users/" + userId;
	request(url, callback);
}).to(10).per(1000);

userIds.forEach(function(userId) {
	callApi(userId, function(err, res, body) {
		/* ... Yay! Not a too-many-request-per-second error! ... */
	});
})

API

Basic usage: var limited = limit(fn);

  • limited(args...): Enqueues a set of arguments that fn will be executed with. Returns an EventEmitter that will emit a limiter-exec event when fn is executed with args. Also, in the case that fn returns an EventEmitter, the events emmitted by the returned EventEmitter will be relayed to the EventEmitter returned by limited. In other words, stuff like this works:

    var limit = require("rate-limiter-node");
    var request = require("request");
    limit(request)("http://google.com").on("data", function(chunk) { /*** code ***/ });
  • limited.to(count=1): The number of times fn will be execute within the time specified by .per(time).

  • limited.per(time=Infinity): The period of time in which fn will be executed .to(count) number of times.

  • limited.evenly([toggle=true]): Off by default. When true, fn will be executed evenly through the time period specified by .per(time). For example, if set to true and .to(10) and .per(1000), then fn will be executed every 100ms.

  • limited.withFuzz([percent=0.1]): Set to 0 by default. Adds a random factor to the delay time. For example if set to 0.1 and .to(10) and .per(1000), then fn will be executed between every 100ms to 110ms.

All methods attached to limited and can be chained.

Edge cases

Basic usage: limit(fn).to(count).per(interval)

The to method or per can be called any number of times including zero. The effective default count for to is 1 and the effective default interval for per is Infinity. Which means if neither the to method or per method are called, then limit will only execute fn once ever:

var init = limit(function() { console.log("Runs only once"); });
for(var i = 0; i < 3; i++) { init(); }

/*** Console output: ***/
// $ Runs only once
// ... Nothing else is ever printed ...

Similarly, if per is never called, fn is executed at most count number of times:

var dos = limit(function() { console.log("twice only"); }).to(2);
for(var i = 0; i < 3; i++) { dos(); }

/*** Console output: ***/
// $ twice only
// $ twice only
// ... Nothing else is ever printed ...

On the other hand, if to is never called, fn is only executed every interval milliseconds:

var tick = limit(function() { console.log("Once a second..."); }).per(1000);
for(var i = 0; i < 3; i++) { tick(); }

/*** Console output: ***/
// $ Once a second
// ... pause for 1 second ...
// $ Once a second
// ... pause for 1 second ...
// $ Once a second

Finally, as mentioned earlier, to and per can be called any number of times. Each time either to or per is called, the previous count or interval value is overriden:

var strange = limit(function() {
	console.log("Every once in a while");
}).to(1).per(1000).to(2).per(2000);
for(var i = 0; i < 3; i++) { strange(); }

Getting rate-limiter-node

The easiest way to get simple-rate-limiter is with npm:

npm install simple-rate-limiter

Alternatively you can clone this git repository:

git clone https://github.com/omair445/request-limiter-node-js.git

Developed by

  • Omair Afzal --> Otif Solution

License

This project is released under The MIT License.