NodeJS

node-rate-limiter-flexible

rate-limiter-flexible limits number of actions by key and protects from DDoS and brute force attacks at any scale.

It works with Redis, process MemoryCluster or PM2MemcachedMongoDBMySQLPostgreSQL and allows to control requests rate in single process or distributed environment.

Atomic increments. All operations in memory or distributed environment use atomic increments against race conditions.

Fast. Average request takes 0.7ms in Cluster and 2.5ms in Distributed application. See benchmarks.

Flexible. Combine limiters, block key for some duration, delay actions, manage failover with insurance options, configure smart key blocking in memory and many others.

Ready for growth. It provides unified API for all limiters. Whenever your application grows, it is ready. Prepare your limiters in minutes.

Friendly. No matter which node package you prefer: redis or ioredissequelize or knexmemcached, native driver or mongoose. It works with all of them.

It uses fixed window as it is much faster than rolling window. See comparative benchmarks with other libraries here

Installation

npm i --save rate-limiter-flexible

yarn add rate-limiter-flexible

Basic Example

const opts = {  points: 6, // 6 points  duration: 1, // Per second}; const rateLimiter = new RateLimiterMemory(opts); rateLimiter.consume(remoteAddress, 2) // consume 2 points    .then((rateLimiterRes) => {      // 2 points consumed    })    .catch((rateLimiterRes) => {      // Not enough points to consume    });

RateLimiterRes object

Both Promise resolve and reject return object of RateLimiterRes class if there is no any error. Object attributes:

RateLimiterRes = {    msBeforeNext: 250, // Number of milliseconds before next action can be done    remainingPoints: 0, // Number of remaining points in current duration     consumedPoints: 5, // Number of consumed points in current duration     isFirstInDuration: false, // action is first in current duration }

You may want to set next HTTP headers to response:

const headers = {  "Retry-After": rateLimiterRes.msBeforeNext / 1000,  "X-RateLimit-Limit": opts.points,  "X-RateLimit-Remaining": rateLimiterRes.remainingPoints,  "X-RateLimit-Reset": new Date(Date.now() + rateLimiterRes.msBeforeNext)}

Advantages:

Middlewares and plugins

Some copy/paste examples on Wiki:

Migration from other packages

  • express-brute Bonus: race conditions fixed, prod deps removed
  • limiter Bonus: multi-server support, respects queue order, native promises

Docs and Examples

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *