UNPKG

@canmertinyo/rate-limiter-core

Version:

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

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