
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
throttler-d
Advanced tools
This module allows you to throttle the invocation of a function (just like Underscore#throttle) across a distributed system. It is built on top of Redis. It will currently always call the function on the leading edge and the trailing edge, just like Underscore's default implementation.
npm install throttler-d
// with `ioredis` object
import { IThrottlerD, ThrottledException, createThrottlerD } from 'throttler-d';
import * as redis from 'ioredis';
const redisConnection = new redis();
const throttler: IThrottlerD = createThrottlerD(redisConnection);
throttler
.call(
'groupKey',
function(err) {
if (err) {
console.log('error!', err);
return;
}
console.log('do something');
},
10000, // 10 seconds
)
.then(console.log)
.catch(console.error);
// If you want to cancel any pending call such that the next invocation will fire immediately.
throttler
.cancel('groupKey')
.then(console.log)
.catch(console.error);
This repo is forked from mixmaxhq/node-distributed-throttle-function
FAQs
Distributed throttle() function (like Underscore) built on Redis
The npm package throttler-d receives a total of 7 weekly downloads. As such, throttler-d popularity was classified as not popular.
We found that throttler-d demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.