Express.js request rate limit middleware by IP with MemoryStore
Install with npm
$ npm install express-better-ratelimit
$ npm test
This package follows ferver
Please read history.md for more info!
- option
message_429
deprecated >=v1.1.x, instead useaccessLimited
- option
message_403
deprecated >=v1.1.x, instead useaccessForbidden
Usage
Some demo example which is exactly
example.js
var express = ;var limit = ; var app = ; app; app; var port = processenvPORT || 3333;app;console;console;
.expressBetterRatelimit
With options through init you can control black/white lists, limit per ip and reset interval.
[options]
{Object}duration
{Integer} Limit duration in milliseconds, default1000 * 60 * 60 * 1
(1 hour)whiteList
{Array} All ips that won't be limited, defaultempty array
blackList
{Array} All ips that always be limited and 403, defaultempty array
accessLimited
{String} Message for all requests after limit, default429: Too Many Requests.
accessForbidden
{String} Message for limited/forbidden, default403: This is forbidden area for you.
max
{Integer} Max requests per ip, default500
env
{Boolean} Manage enviroment, for tests will usex-koaip
header, defaultnull
return
{Function}
Authors & Contributors
Copyright (c) 2014 Charlike Make Reagent, contributors.
Released under the MIT
license.