@dealerslink/node-express-rate-limiter

A cache-based, request rate limiter for ExpressJS

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@dealerslink/node-express-rate-limiter
1.1.25 years ago6 years agoMinified + gzip package size for @dealerslink/node-express-rate-limiter in KB

Readme

node-express-rate-limiter
node-express-rate-limit is a cache-based, request reate limiter for use with expressJS. It is designed for use with request-utils but can be used without. It caches a store of IP address, Method, and Request tuples used to make any request and then temporarily blocks requests from those sources once a limit for those requests have been exceeded.
npm install @dealerslink/express-rate-limiter

const RateLimiter = require('@dealerslink/node-express-rate-limiter');
rateLimiter = new RateLimiter('rateLimit');

See wiki for more details.