MCPcopy
hub / github.com/animir/node-rate-limiter-flexible

github.com/animir/node-rate-limiter-flexible @v11.2.0 sqlite

repository ↗ · DeepWiki ↗ · release v11.2.0 ↗
533 symbols 1,047 edges 78 files 73 documented · 14%
README

npm version npm node version deno version

Logo

node-rate-limiter-flexible

rate-limiter-flexible counts and limits the number of events and protects from DoS and brute force attacks at any scale.

It works with Valkey, Redis, Prisma, DynamoDB, process Memory, Cluster or PM2, Memcached, MongoDB, MySQL, SQLite, and PostgreSQL.

Memory limiter also works in the browser.

AI tools See llms.txt and CONTEXT.md for LLM-friendly documentation.

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 a 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: valkey-glide or iovalkey, redis or ioredis, sequelize/typeorm or knex, memcached, native driver or mongoose. It works with all of them.

In-memory blocks. Avoid extra requests to store with inMemoryBlockOnConsumed.

Deno compatible See this example

The Flexible Fixed Window algorithm starts counting from the moment a request is received, diversifying rate limit reset times across clients. Read more here

Installation

npm i --save rate-limiter-flexible

yarn add rate-limiter-flexible

Import

```javascript import { RateLimiterMemory } from "rate-limiter-flexible";

// or import directly import RateLimiterMemory from "rate-limiter-flexible/lib/RateLimiterMemory.js"; ```

Basic Example

Points can be consumed by IP address, user ID, authorisation token, API route or any other string.

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

The Promise's resolve and reject callbacks both return an instance of the RateLimiterRes class if there is no 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 HTTP headers for the response:

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

Advantages:

Full documentation is on Wiki

Middlewares, plugins and other packages

Copy/paste examples on Wiki: * Minimal protection against password brute-force * Login endpoint protection * Apply Block Strategy * Setup Insurance Strategy * Websocket connection prevent flooding * Dynamic block duration * Authorized users specific limits * Different limits for different parts of application * Third-party API, crawler, bot rate limiting

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

Changelog

See releases for detailed changelog.

Basic Options

  • points

    Required

    Maximum number of points that can be consumed over duration

  • duration

    Required

    Number of seconds before consumed points are reset.

    Points are never reset if duration is set to 0.

  • storeClient

    Required for store limiters

    Must be pool or connection created with store client packages, e.g. @valkey/valkey-glide, ioredis, iovalkey, redis, memcached, mongodb, pg, mysql2, mysql, etc.

Other options on Wiki:

See full list of options.

API

Read detailed description on Wiki.

Contributions

Appreciated, feel free!

Make sure you've launched npm run eslint before creating PR, all errors have to be fixed.

You can try to run npm run eslint-fix to fix some issues.

Any new limiter with storage must be extended from RateLimiterStoreAbstract. It has to implement 4 methods: * _getRateLimiterRes parses raw data from store to RateLimiterRes object. * _upsert may be atomic or non-atomic upsert (increment). It inserts or updates

Extension points exported contracts — how you extend this code

IRateLimiterValkeyGlideOptions (Interface)
* Options for RateLimiterValkeyGlide
types.d.ts
IRLWrapperBlackAndWhiteOptions (Interface)
(no doc) [1 implementers]
types.d.ts
IRateLimiterRes (Interface)
(no doc)
types.d.ts
IRateLimiterOptions (Interface)
(no doc)
types.d.ts
IRateLimiterClusterOptions (Interface)
(no doc)
types.d.ts

Core symbols most depended-on inside this repo

consume
called by 462
lib/RateLimiterUnion.js
get
called by 202
lib/BurstyRateLimiter.js
getKey
called by 118
lib/RateLimiterAbstract.js
delete
called by 73
lib/RateLimiterMemory.js
restore
called by 68
lib/RateLimiterMemory.js
set
called by 60
lib/RateLimiterMemory.js
reward
called by 46
lib/RateLimiterMemory.js
block
called by 43
lib/RateLimiterMemory.js

Shape

Method 335
Class 154
Function 23
Interface 21

Languages

TypeScript100%

Modules by API surface

types.d.ts85 symbols
lib/RLWrapperBlackAndWhite.js27 symbols
lib/RateLimiterStoreAbstract.js23 symbols
lib/RateLimiterCluster.js23 symbols
lib/RateLimiterAbstract.js22 symbols
lib/RateLimiterPostgres.js21 symbols
lib/RateLimiterSQLite.js20 symbols
lib/RateLimiterMySQL.js20 symbols
lib/RateLimiterInsuredAbstract.js20 symbols
test/RateLimiterPostgres.test.js17 symbols
lib/RateLimiterDynamo.js16 symbols
lib/RateLimiterMongo.js15 symbols

Dependencies from manifests, versioned

@aws-sdk/client-dynamodb3.1029.0 · 1×
@prisma/client5.22.0 · 1×
@valkey/valkey-glide1.3.4 · 1×
better-sqlite311.10.0 · 1×
chai4.5.0 · 1×
coveralls3.1.1 · 1×
drizzle-kit0.31.10 · 1×
drizzle-orm0.45.2 · 1×
eslint4.19.1 · 1×
eslint-config-airbnb-base12.1.0 · 1×
eslint-plugin-import2.32.0 · 1×
eslint-plugin-node6.0.1 · 1×

For agents

$ claude mcp add node-rate-limiter-flexible \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact