1.0.0 • Published 23 days ago

@trpc-limiter/upstash v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
23 days ago

@trpc-limiter/upstash

Upstash Rate Limiter Adapter for tRPC Limiter.

Install

npm install @trpc-limiter/upstash@latest @upstash/ratelimit@latest @upstash/redis@latest

Enviroment Variables

Both UPSTASH_REDIS_REST_URL and UPSTASH_REDIS_REST_TOKEN are required. an error will be thrown (in this example) if they are not provided

  • UPSTASH_REDIS_REST_TOKEN=...
  • UPSTASH_REDIS_REST_URL=...

Check This Blog For More Info.

Usage

import { initTRPC } from '@trpc/server'
import { type NextApiRequest } from 'next'
import {
  createTRPCUpstashLimiter,
  defaultFingerPrint,
} from '@trpc-limiter/upstash'
import { Redis } from '@upstash/redis'
import { Ratelimit } from '@upstash/ratelimit'

type Context = {
  req: NextApiRequest
}

const t = initTRPC.context<Context>().create()

const rateLimiter = createTRPCUpstashLimiter<typeof t>({
  fingerprint: (ctx) => defaultFingerPrint(ctx.req),
  message: (hitInfo) =>
    `Too many requests, please try again later. ${Math.ceil(
      (hitInfo.reset - Date.now()) / 1000
    )}`,
  max: 15,
  windowMs: 10000,
  rateLimitOpts(opts) {
    return {
      redis: Redis.fromEnv(),
      limiter: Ratelimit.fixedWindow(opts.max, `${opts.windowMs} ms`),
    }
  },
})

export const rateLimitedProcedure = t.procedure.use(rateLimiter)
1.0.0

23 days ago

0.0.3

1 year ago

0.0.2

1 year ago