UNPKG

@canmertinyo/rate-limit-express

Version:

A simple rate-limiting middleware for Express.js with support for in-memory, Redis, and MongoDB storage

6 lines (5 loc) 95 B
export interface RateLimitRecord { key: string; count: number; timestamp: number; }