Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Nodejs Backend Architecture Typescript | 2,133 | a month ago | 11 | apache-2.0 | TypeScript | |||||
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. | ||||||||||
Beansdb | 789 | 7 years ago | 1 | February 27, 2018 | 9 | other | C | |||
Archived, see GoBeansDB instead. | ||||||||||
Nodock | 717 | 3 years ago | 20 | mit | Shell | |||||
Docker Compose for Node projects with Node, MySQL, Redis, MongoDB, NGINX, Apache2, Memcached, Certbot and RabbitMQ images | ||||||||||
React Component Caching | 350 | 3 | 4 years ago | 2 | March 22, 2018 | 8 | JavaScript | |||
Speedier server-side rendering with component caching in React 16 | ||||||||||
Neard | 318 | a year ago | 14 | lgpl-3.0 | PHP | |||||
🎲 Portable WAMP software stack | ||||||||||
Arcus | 293 | 4 months ago | 4 | apache-2.0 | Shell | |||||
ARCUS is the NAVER memcached with lists, sets, maps and b+trees. http://naver.github.io/arcus | ||||||||||
Node Memcache | 285 | 276 | 29 | 4 years ago | 3 | January 29, 2012 | 27 | JavaScript | ||
node.js memcached client | ||||||||||
Onecache | 248 | 7 years ago | January 18, 2016 | 1 | mpl-2.0 | Go | ||||
OneCache is a best-effort, replicated KV store accessible via the memcached protocol | ||||||||||
Phpwebstudy | 193 | 17 days ago | bsd-3-clause | Vue | ||||||
Php and Web development environment manage tool for MacOS system, the better way to manage your local web server | ||||||||||
Sequelize Transparent Cache | 163 | 7 months ago | n,ull | cc-by-4.0 | JavaScript | |||||
Simple to use and universal cache layer for Sequelize |
A memcached store for express-brute
via npm:
$ npm install express-brute-memcached
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!');
}
);
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.For details see node-memcached.