UNPKG

get-express-starter

Version:

Get production ready express boilerplate with a single command

12 lines (9 loc) 195 B
const rateLimit = require('express-rate-limit'); const authLimiter = rateLimit({ windowMs: 15 * 60 * 1000, max: 20, skipSuccessfulRequests: true, }); module.exports = { authLimiter, };