express-brute-redis
A Redis store for express-brute
Installation
via npm:
$ npm install express-brute-redis
Usage
var ExpressBrute =RedisStore = ;var store =host: '127.0.0.1'port: 6379;var bruteforce = store;app;
Options
host
A string containing redis server host (default: '127.0.0.1')port
The port number to connect to redis on (default: 6379)prefix
An optional prefix for each redis key, in case you are sharing your redis servers with something generating its own keys.client
Pre-connected redis client to use, rather than creating our own. Causes all other options besidesprefix
to be ignored (default: undefined)- ... The rest of the options will be passed directly to the node-redis constructor.
For details see node-redis.