0.0.3 • Published 11 months ago

next-rate-limit v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Next Rate Limit

Update to next.js Api Route Limiting Example

Installation

# Using npm
> npm install next-rate-limit
# Using yarn
> yarn add next-rate-limit
# Using pnpm
> pnpm add next-rate-limit

Usage

Importing

import rateLimit from 'next-rate-limit';

Examples

import rateLimit from 'next-rate-limit';
import { NextRequest, NextResponse } from 'next/server';

const limiter = rateLimit({
  interval: 60 * 1000, // 1 minute
  uniqueTokenPerInterval: 500 // Max 500 users per minute
});

export function GET(req: NextRequest) {
  try {
    const headers = limiter.checkNext(req, 10);

    return NextResponse.json(
      {
        limit: headers.get('X-RateLimit-Limit'),
        remaining: headers.get('X-RateLimit-Remaining')
      },
      { headers }
    );
  } catch {
    return NextResponse.json({ error: 'Rate limit exceeded' }, { status: 429 });
  }
}

See original repo linked for full example.

Configuration

interval

number

See lru-cache ttl

Defaults to 60000 ms (= 1 minute).

uniqueTokenPerInterval

number

See lru-cache max

Defaults to 500.

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago