1.1.2 • Published 6 years ago

@dealerslink/node-express-rate-limiter v1.1.2

Weekly downloads
1
License
-
Repository
-
Last release
6 years ago

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.

Installation

npm install @dealerslink/express-rate-limiter

Usage

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

See wiki for more details.