UNPKG

get-express-starter

Version:

Get production ready express boilerplate with a single command

8 lines (6 loc) 159 B
import rateLimit from 'express-rate-limit'; export const authLimiter = rateLimit({ windowMs: 15 * 60 * 1000, max: 20, skipSuccessfulRequests: true, });