sveltekit-rate-limiter
A modular rate limiter for password resets, account registration, etc. Use in your page.server.ts
files, or hooks.server.ts
.
Uses an in-memory cache, but can be swapped for something else. Same for limiters, which are plugins. See the source file for interfaces.
import { RateLimiter } from 'sveltekit-rate-limiter';
const limiter = new RateLimiter({
rates: {
IP: [10, 'h'],
IPUA: [5, 'm'],
cookie: {
name: 'limiterid',
secret: 'SECRETKEY-SERVER-ONLY',
rate: [2, 'm'],
preflight: true
}
}
});
export const load = async (event) => {
limiter.cookieLimiter?.preflight(event);
};
export const actions = {
default: async (event) => {
if (await limiter.isLimited(event)) return fail(429);
}
};
Creating a custom limiter
Implement the RateLimiterPlugin
interface:
interface RateLimiterPlugin {
hash: (event: RequestEvent) => Promise<string | boolean>;
get rate(): Rate;
}
In hash
, return a string based on a RequestEvent
, which will be counted and checked against the rate, or a boolean to make the request fail (false
) or succeed (true
) no matter the current rate. The string will be hashed later.
Here's the source for the IP + User Agent limiter, as an example:
import type { RequestEvent } from '@sveltejs/kit';
import type { Rate, RateLimiterPlugin } from 'sveltekit-rate-limiter';
class IPUserAgentRateLimiter implements RateLimiterPlugin {
readonly rate: Rate;
constructor(rate: Rate) {
this.rate = rate;
}
async hash(event: RequestEvent) {
const ua = event.request.headers.get('user-agent');
if (!ua) return false;
return event.getClientAddress() + ua;
}
}
Add the limiter to options.plugins
to use it.
import { RateLimiter } from 'sveltekit-rate-limiter';
const limiter = new RateLimiter({
plugins: [new CustomLimiter([5, 'm'])]
});