You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
11 years ago | |
---|---|---|
.gitignore | 11 years ago | |
LICENSE | 11 years ago | |
Makefile | 11 years ago | |
README.md | 11 years ago | |
index.js | 11 years ago | |
package.json | 11 years ago |
README.md
Express rate-limitter
Rate limiting middleware for Express applications built on redis
var limitter = require('expa').limitter(app, client)
limitter({
path: '/like',
method: 'get',
lookup: ['req.user.id', 'req.connection.remoteAddress'],
total: 100,
expire: 1000 * 60 * 60
})