
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
nodejs-rate-limiter
Advanced tools
A rate limiting library for Node, using Redis. Implements 5 different rate limiting algorithms.
A rate limiting library for Node, using Redis. Implements 5 different rate limiting algorithms.
Install the package via npm:
npm install nodejs-rate-limiter
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}`);
}
})();
This package is licensed under the MIT License.
Feel free to contribute by submitting issues or pull requests to improve the library.
FAQs
A rate limiting library for Node, using Redis. Implements 5 different rate limiting algorithms.
We found that nodejs-rate-limiter demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.