UNPKG

techdadi-express-starter-ts

Version:

CLI for creating a new Express TypeScript starter project

10 lines (7 loc) 271 B
import rateLimit from 'express-rate-limit'; const limiter = rateLimit({ windowMs: 15 * 60 * 1000, // 15 minutes max: 100, // limit each IP to 100 requests per windowMs message: 'Too many requests from this IP, please try again later', }); export default limiter;