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

rest-throttler

v0.0.3

Published

Request throttling interceptor for rest.js

Downloads

9

Readme

rest-throttler.js

Interceptor for rate-limiting requests done via rest.js-compatible clients.

Usage

Using this interceptor is pretty straightforward. See below.

Basic example

var rest = require('rest');
var throttler = require('rest-throttler');

var slowClient = rest.wrap(throttler, {limit: 1000}); // 1 request per 1000 ms

slowClient('/foo').tap(console.log);
slowClient('/bar').tap(console.log);
slowClient('/buzz').tap(console.log);
slowClient('/quux').tap(console.log);

In this example, four requests will be performed sequentially, one after another, with 1000 msec delay between.

Multiple throttlers

You can also create multiple unrelated throttlers:

var rest = require('rest');
var throttler = require('rest-throttler');

var slowClient = rest.wrap(throttler, {limit: 1000});
var verySlowClient = rest.wrap(throttler, {limit: 2000});

slowClient('/foo').tap(console.log);
verySlowClient('/bar').tap(console.log);
slowClient('/buzz').tap(console.log);

In this example slowClient and verySlowClient have unrelated throttlers, so they are executed in parallel to each other, but still remain sequential within their local queues.

Multiple clients

You can share single throttler between several clients:

var rest = require('rest');
var throttler = require('rest-throttler');

var limit = throttler.limit(1000);

var muchSlowClient = rest.wrap(throttler, limit);
var verySlackClient = rest.wrap(throttler, limit);

muchSlowClient('/foo').tap(console.log);
verySlackClient('/bar').tap(console.log);
muchSlowClient('/buzz').tap(console.log);
verySlackClient('/quux').tap(console.log);

These two clients share same limit object, so they belong to single queue and won't be handled in parallel.

Altering behavior

By default, interceptor ensures time delta between the last response and next request is no less than specified delay, so if you talk to slow server, you may wait somewhat longer than expected.

If you are not happy with this, you can tell throttler to only account interval between sending requests, disregarding when and if response arrives:

var rest = require('rest');
var throttler = require('rest-throttler');

var slowClient = rest.wrap(throttler, { limit: 1000, async: true });

slowClient('/foo').tap(console.log);

limit property accepts either explicit limit object, or delay number to create limit object automatically. Absent limit property disables throttling completely.

Dynamic reconfiguration

You can override settings for specific request by assigning configuration hash object to request.throttler property.

Following example will uniformly distribute requests between two throttlers, without altering client itself:

var rest = require('rest');
var throttler = require('rest-throttler');

var varyingClient = rest.wrap(throttler);

var slowLimit = throttler.limit(1000);
var fastLimit = throttler.limit(250);

for (var i = 0; i < 10; i++) {
	varyingClient({
		path: 'http://httpbin.org/get?seq=' + i,
		throttler: {
			async: false,
			limit: (Math.random() < 0.5) ? slowLimit : fastLimit
		},
		seq: i
	}).tap(function(response) {
		var request = response.request;
		var delay = request.throttler.limit.delay;
		var prefix = '';
		
		if (delay === 1000) {
			prefix = '\t\t\t\t';
		}
		
		console.log(prefix + 'Seq #' + request.seq + ' used delay ' + request.throttler.limit.delay);
	}).done();
}

This can be also changed from preceding interceptors, for example, to implement optional rate limiting depending on domain, or whatever.

Using as promise

limit object is actually promise factory. You can use it as follows:

var limit = require('rest-throttler').limit;

var queue = limit(3000);
queue().tap(function() { console.log('This will show up immediately.'); });
queue().tap(function() { console.log('This will be delayed by 3 seconds.'); });
queue().tap(function() { console.log('All these remain sequential.'); });

Invoking limit(delay) returns function returning promise, that will resolve delay msec after last promise from same throttler had resolved.

It does not work!

You are doing it wrong. Please make sure you either share same limit object between client instances you want to belong to same rate limiting queue.

Copyright

rest-throttler.js is made available under the terms of MIT license. See LICENSE for details.