npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@g14o/ratelimit

v0.8.0

Published

Framework-agnostic rate limiting with Upstash Redis.

Downloads

440

Readme

@g14o/ratelimit

Documentation: docs.g14o.dev/packages/ratelimit

Framework-agnostic rate limiting with Upstash Redis. Works with any runtime that uses Web Request / Response (Next.js App Router, Hono, Cloudflare Workers, etc.) or adapters built on RateLimitRequest / RateLimitResponse.

RateLimitClient and RateLimitOptions accept optional type parameters for framework-specific request/response types (defaults: Web Request / Response; constraint: RateLimitRequest / RateLimitResponse for custom adapters).

Install

pnpm add @g14o/ratelimit @upstash/redis @upstash/ratelimit

Peers are optional in package.json metadata for metadata-only installs; add both Upstash packages when using Redis-backed limits in production.

Setup

Create an app-owned client in lib/ratelimit.ts:

import { createRateLimit } from "@g14o/ratelimit";
import { env } from "@/lib/env";

export const { withRateLimit, checkRateLimit, withUserRateLimit } =
  createRateLimit({
    redis: {
      url: env.UPSTASH_REDIS_REST_URL,
      token: env.UPSTASH_REDIS_REST_TOKEN,
    },
    verbose: true,
  });

Store configuration (recommended)

import { createRateLimit } from "@g14o/ratelimit";
import { upstashStore } from "@g14o/ratelimit/upstash";
import { memoryStore } from "@g14o/ratelimit/memory";

// Distributed (Upstash Redis)
export const { withRateLimit } = createRateLimit({
  store: upstashStore({
    url: env.UPSTASH_REDIS_REST_URL,
    token: env.UPSTASH_REDIS_REST_TOKEN,
  }),
});

// Or with a pre-built client: upstashStore({ redis: Redis.fromEnv() })

// In-process (opt-in for production; automatic in dev/test/build)
export const { withRateLimit: withLocalRateLimit } = createRateLimit({
  store: memoryStore(),
});

// Self-hosted or managed Redis (node-redis or ioredis)
import { createClient } from "redis";
import { redisStore } from "@g14o/ratelimit/redis";

const redis = createClient({ url: process.env.REDIS_URL });
await redis.connect();

export const { withRateLimit: withRedisRateLimit } = createRateLimit({
  store: redisStore(redis),
});

The legacy redis option remains fully supported and internally creates an Upstash store. store and redis are mutually exclusive — pass one or neither, not both.

redisStore() accepts either a node-redis client (redis package) or an ioredis client. Install one peer and pass a connected client. Keys use the tier prefix (@ratelimit:<tier>:<identifier>) and auto-expire. reset() on the rate limit client does not clear Redis counters.

Custom stores

import { createRateLimit, createStore, defineStore } from "@g14o/ratelimit";

// Fixed-window from atomic increment (Redis INCR+PEXPIRE, etc.)
const redisStore = createStore({
  async increment(key, windowMs) {
    const count = await redis.incr(key);
    if (count === 1) await redis.pexpire(key, windowMs);
    const ttl = await redis.pttl(key);
    return { count, reset: Date.now() + Math.max(ttl, 0) };
  },
});

// Full control — sliding-window or custom algorithms
const customStore = defineStore({
  createLimiter(config) {
    return {
      async limit(identifier) {
        return { success: true, limit: config.limit, remaining: 9, reset: Date.now() };
      },
    };
  },
});

createStore uses fixed-window counting. Built-in memoryStore and upstashStore use sliding-window. Use defineStore when you need sliding-window semantics on a custom backend.

Lifecycle hooks

import { createRateLimit } from "@g14o/ratelimit";

export const { withRateLimit } = createRateLimit({
  store: upstashStore({ url, token }),
  hooks: {
    onSuccess({ identifier, tier, remaining }) {
      // metrics, logging, etc.
    },
    onLimitExceeded({ identifier, tier }) {
      // alert or audit blocked requests
    },
    onStoreError({ error, tier }) {
      // store threw — request still fails open
    },
    onFailure({ reason, tier }) {
      // umbrella: reason is "limit_exceeded" | "store_error"
    },
    onReset({ clearedKeys }) {
      // reset() cleared these cache keys
    },
  },
});

Hooks are awaited; hook errors are logged and swallowed. Skipped requests do not fire hooks.

Examples

Next.js App Router route

import { withRateLimit } from "@/lib/ratelimit";

export const POST = withRateLimit(
  async (req) => Response.json({ ok: true }),
  { tier: "moderate" }
);

Manual check (middleware or custom flow)

Use checkRateLimit when you are not wrapping a route handler:

import { checkRateLimit } from "@/lib/ratelimit";

export async function POST(req: Request) {
  const result = await checkRateLimit(req, { tier: "strict" });
  if (!result.ok) {
    return Response.json({ error: "Too many requests" }, { status: 429 });
  }
  // ...
}

Per-user rate limit

Use a verified identity from your auth provider — not client-controlled headers.

import { withUserRateLimit } from "@/lib/ratelimit";
import { getSession } from "@/lib/auth";

export const POST = withUserRateLimit(
  async (req) => Response.json({ ok: true }),
  async (req) => {
    const session = await getSession(req);
    return session?.user.id ?? null;
  },
  { tier: "auth" }
);

Custom identifier

import { withRateLimit } from "@/lib/ratelimit";

export const GET = withRateLimit(
  async (req) => Response.json({ ok: true }),
  {
    tier: "lenient",
    identifierFn: async (req) =>
      req.headers.get("x-api-key") ?? "anonymous",
  }
);

Custom tiers

Override built-in tier limits when creating the client:

export const { withRateLimit } = createRateLimit({
  redis: {
    url: env.UPSTASH_REDIS_REST_URL,
    token: env.UPSTASH_REDIS_REST_TOKEN,
  },
  tiers: {
    strict: { limit: 3, window: "30 s" },
    auth: { limit: 10 },
  },
});

Build vs runtime

By default, inMemoryDuringBuild is true: during static build phases (Next.js sets NEXT_PHASE during next build / export), rate limiting uses an in-memory backend so prerender does not call Upstash. At runtime in production, Redis is used when configured.

import { createRateLimit } from "@g14o/ratelimit";
import { env } from "@/lib/env";

export const { withRateLimit } = createRateLimit({
  redis: {
    url: env.UPSTASH_REDIS_REST_URL,
    token: env.UPSTASH_REDIS_REST_TOKEN,
  },
  inMemoryDuringBuild: true, // default
});

Import isBuildLikePhase() from @g14o/ratelimit/config if you need to detect build phase yourself.

For Next.js route handlers with NextRequest / NextResponse types, use @g14o/ratelimit-nextjs.

For Express middleware and route handlers, use @g14o/ratelimit-express.

For Hono middleware and route handlers, use @g14o/ratelimit-hono.

Custom framework adapters

Implement RateLimitRequest (url + headers.get()) for any HTTP framework:

import { createRateLimit, type RateLimitRequest } from "@g14o/ratelimit";

function adaptMyRequest(req: MyRequest): RateLimitRequest {
  return {
    url: req.fullUrl,
    headers: { get: (name) => req.header(name) ?? null },
  };
}

const { checkRateLimit } = createRateLimit<RateLimitRequest, never>({ env: "test" });

Import paths

| Use case | Import | |----------|--------| | Rate limit factory | import { createRateLimit } from "@g14o/ratelimit" | | Lifecycle hooks | import type { RateLimitHooks } from "@g14o/ratelimit" | | Custom store helpers | import { createStore, defineStore } from "@g14o/ratelimit" | | In-memory store | import { memoryStore } from "@g14o/ratelimit/memory" | | Upstash store | import { upstashStore } from "@g14o/ratelimit/upstash" | | Redis store (node-redis / ioredis) | import { redisStore } from "@g14o/ratelimit/redis" | | Redis / env helpers | import { createRedisClient, isBuildLikePhase } from "@g14o/ratelimit/config" |

Next.js alternative

pnpm add @g14o/ratelimit-nextjs @upstash/redis @upstash/ratelimit next

Import rate limiting from @g14o/ratelimit-nextjs (uses next/server types).

Express alternative

pnpm add @g14o/ratelimit-express @upstash/redis @upstash/ratelimit express

Import rate limiting from @g14o/ratelimit-express (middleware and route wrappers).

Hono alternative

pnpm add @g14o/ratelimit-hono @upstash/redis @upstash/ratelimit hono

Import rate limiting from @g14o/ratelimit-hono (middleware and route wrappers).