New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

nodejs-rate-limiter

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodejs-rate-limiter

A rate limiting library for Node, using Redis. Implements 5 different rate limiting algorithms.

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

nodejs-rate-limiter

A rate limiting library for Node, using Redis. Implements 5 different rate limiting algorithms.

Strategies

  • Token Bucket

Installation

Install the package via npm:

npm install nodejs-rate-limiter

Usage

import Redis from "ioredis";
import { TokenBucketStrategy, RedisStorage } from "nodejs-rate-limiter";

const redis = new Redis();

// Create an instance of RedisStorage
const redisStorage = new RedisStorage(redis);

// Configure the TokenBucketStrategy
const tokenBucket = new TokenBucketStrategy({
  store: redisStorage,
  bucketCapacity: 10, // Maximum number of tokens in the bucket
  refillRate: 2, // Tokens added per second
});

// Define a unique key to track the rate limit (e.g., user ID, IP address)
const userKey = "user:123";

(async () => {
  // Check if a request is allowed
  const response = await tokenBucket.check(userKey);

  if (response.allowed) {
    console.log(`Request allowed. Remaining tokens: ${response.remaining}`);
  } else {
    console.log(`Request denied. Retry after ${response.retryAfterMs}ms. Remaining tokens: ${response.remaining}`);
  }
})();

License

This package is licensed under the MIT License.

Contributors

Feel free to contribute by submitting issues or pull requests to improve the library.

FAQs

Package last updated on 24 Aug 2025

Did you know?

Socket

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.

Install

Related posts