Socket
Book a DemoInstallSign in
Socket

express-brute-redis

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-brute-redis

A Redis store for express-brute

latest
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

express-brute-redis

Build Status NPM version

A Redis store for express-brute

Installation

via npm:

  $ npm install express-brute-redis

Usage

var ExpressBrute = require('express-brute'),
	RedisStore = require('express-brute-redis');

var store = new RedisStore({
	host: '127.0.0.1',
	port: 6379
});
var bruteforce = new ExpressBrute(store);

app.post('/auth',
	bruteforce.prevent, // error 403 if we hit this route too often
	function (req, res, next) {
		res.send('Success!');
	}
);

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 besides prefix to be ignored (default: undefined)
  • ... The rest of the options will be passed directly to the node-redis constructor.

For details see node-redis.

Keywords

express

FAQs

Package last updated on 07 Jan 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.