Express Brute Memcached

A memcached store for ExpressBrute
Alternatives To Express Brute Memcached
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Nodejs Backend Architecture Typescript2,133
a month ago11apache-2.0TypeScript
Node.js Backend Architecture Typescript - Learn to build a backend server for production ready blogging platform like Medium and FreeCodeCamp. Main Features: Role based, Express.js, Mongoose, Redis, Mongodb, Joi, Docker, JWT, Unit Tests, Integration Tests.
Beansdb789
7 years ago1February 27, 20189otherC
Archived, see GoBeansDB instead.
Nodock717
3 years ago20mitShell
Docker Compose for Node projects with Node, MySQL, Redis, MongoDB, NGINX, Apache2, Memcached, Certbot and RabbitMQ images
React Component Caching350
34 years ago2March 22, 20188JavaScript
Speedier server-side rendering with component caching in React 16
Neard318
a year ago14lgpl-3.0PHP
🎲 Portable WAMP software stack
Arcus293
4 months ago4apache-2.0Shell
ARCUS is the NAVER memcached with lists, sets, maps and b+trees. http://naver.github.io/arcus
Node Memcache285276294 years ago3January 29, 201227JavaScript
node.js memcached client
Onecache248
7 years agoJanuary 18, 20161mpl-2.0Go
OneCache is a best-effort, replicated KV store accessible via the memcached protocol
Phpwebstudy193
17 days agobsd-3-clauseVue
Php and Web development environment manage tool for MacOS system, the better way to manage your local web server
Sequelize Transparent Cache163
7 months agon,ullcc-by-4.0JavaScript
Simple to use and universal cache layer for Sequelize
Alternatives To Express Brute Memcached
Select To Compare


Alternative Project Comparisons
Readme

express-brute-memcached

Build Status NPM version

A memcached store for express-brute

Installation

via npm:

  $ npm install express-brute-memcached

Usage

var ExpressBrute = require('express-brute'),
	MemcachedStore = require('express-brute-memcached');

var store = new MemcachedStore('127.0.0.1:11211');
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

  • hosts Memcached servers locations, can by string, array, or hash.
  • options
    • prefix An optional prefix for each memcache key, in case you are sharing your memcached servers with something generating its own keys.
    • ... The rest of the options will be passed directly to the node-memcached constructor.

For details see node-memcached.

Popular Memcached Projects
Popular Nodejs Projects
Popular Data Storage Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Node
Express
Memcached
Memcache
Brute