Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
fastify-rate-limit
Advanced tools
A low overhead rate limiter for your routes. Supports Fastify 2.x - 3.x
semver range.
Please refer to this branch and related versions for Fastify 1.x compatibility.
npm i fastify-rate-limit
Register the plugin pass to it some custom option.
This plugin will add an onRequest
hook to check if the clients (based on their ip) has done too many request in the given timeWindow.
const fastify = require('fastify')()
fastify.register(require('fastify-rate-limit'), {
max: 100,
timeWindow: '1 minute'
})
fastify.get('/', (req, reply) => {
reply.send({ hello: 'world' })
})
fastify.listen(3000, err => {
if (err) throw err
console.log('Server listening at http://localhost:3000')
})
In case a client reaches the maximum number of allowed requests, an error will be sent to the user with the status code set to 429
:
{
statusCode: 429,
error: 'Too Many Requests',
message: 'Rate limit exceeded, retry in 1 minute'
}
You can change the response by providing a callback to errorResponseBuilder
or setting a custom error handler:
fastify.setErrorHandler(function (error, request, reply) {
if (reply.statusCode === 429) {
error.message = 'You hit the rate limit! Slow down please!'
}
reply.send(error)
})
The response will have some additional headers:
Header | Description |
---|---|
x-ratelimit-limit | how many request the client can do |
x-ratelimit-remaining | how many request remain to the client in the timewindow |
x-ratelimit-reset | how many seconds must pass before the rate limit resets |
retry-after | if the max has been reached, the millisecond the client must wait before perform new requests |
You can pass the following options during the plugin registration:
fastify.register(require('fastify-rate-limit'), {
global : false, // default true
max: 3, // default 1000
ban: 2, // default null
timeWindow: 5000, // default 1000 * 60
cache: 10000, // default 5000
allowList: ['127.0.0.1'], // default []
redis: new Redis({ host: '127.0.0.1' }), // default null
skipOnError: true, // default false
keyGenerator: function(req) { /* ... */ }, // default (req) => req.raw.ip
errorResponseBuilder: function(req, context) { /* ... */},
enableDraftSpec: true, // default false. Uses IEFT draft header standard
addHeaders: { // default show all the response headers when rate limit is reached
'x-ratelimit-limit': true,
'x-ratelimit-remaining': true,
'x-ratelimit-reset': true,
'retry-after': true
}
})
global
: indicates if the plugin should apply the rate limit setting to all routes within the encapsulation scopemax
: is the maximum number of requests a single client can perform inside a timeWindow. It can be an async function with the signature async (req, key) => {}
where req
is the Fastify request object and key
is the value generated by the keyGenerator
. The function must return a number.ban
: is the maximum number of 429 responses to return to a single client before returning 403. When the ban limit is exceeded the context field will have ban=true
in the errorResponseBuilder. This parameter is an in-memory counter and could not work properly in a distributed environment.timeWindow:
the duration of the time window. It can be expressed in milliseconds or as a string (in the ms
format)cache
: this plugin internally uses a lru cache to handle the clients, you can change the size of the cache with this optionallowList
: array of string of ips to exclude from rate limiting. It can be a sync function with the signature (req, key) => {}
where req
is the Fastify request object and key
is the value generated by the keyGenerator
. If the function return a truthy value, the request will be excluded from the rate limit.redis
: by default this plugins uses an in-memory store, which is fast but if you application works on more than one server it is useless, since the data is store locally.ioredis
. Note:: the default parameters of a redis connection are not the fastest to provide a rate-limit. We suggest to customize the connectTimeout
and maxRetriesPerRequest
as in the example
.store
: a custom store to track requests and rates which allows you to use your own storage mechanism (such as using an RDBMS, MongoDB, etc...) as well as further customizing the logic used in calculating the rate limits. A simple example is provided below as well as a more detailed example using Knex.js can be found in the example/
folderskipOnError
: if true
it will skip errors generated by the storage (eg, redis not reachable).keyGenerator
: a function to generate a unique identifier for each incoming request. Defaults to (req) => req.ip
, the IP is resolved by fastify using req.connection.remoteAddress
or req.headers['x-forwarded-for']
if trustProxy option is enabled. Use it if you want to override this behaviorerrorResponseBuilder
: a function to generate a custom response object. Defaults to (req, context) => ({statusCode: 429, error: 'Too Many Requests', message: ``Rate limit exceeded, retry in ${context.after}``})
addHeaders
: define which headers should be added in the response when the limit is reached. Defaults all the headers will be shownenableDraftSpec
: if true
it will change the HTTP rate limit headers following the IEFT draft document. More information at draft-ietf-httpapi-ratelimit-headers.md.keyGenerator
example usage:
fastify.register(require('fastify-rate-limit'), {
/* ... */
keyGenerator: function(req) {
return req.headers['x-real-ip'] // nginx
|| req.headers['x-client-ip'] // apache
|| req.headers['x-forwarded-for'] // use this only if you trust the header
|| req.session.username // you can limit based on any session value
|| req.raw.ip // fallback to default
}
})
Variable max
example usage:
// In the same timeWindow, the max value can change based on request and/or key like this
fastify.register(rateLimit, {
/* ... */
keyGenerator (req) { return req.headers['service-key'] },
max: async (req, key) => { return key === 'pro' ? 3 : 2 },
timeWindow: 1000
})
errorResponseBuilder
example usage:
fastify.register(require('fastify-rate-limit'), {
/* ... */
errorResponseBuilder: function(req, context) {
return {
code: 429,
error: 'Too Many Requests',
message: `I only allow ${context.max} requests per ${context.after} to this Website. Try again soon.`,
date: Date.now()
}
}
})
Dynamic allowList
example usage:
fastify.register(require('fastify-rate-limit'), {
/* ... */
allowList: function(req, key) {
return req.headers['x-app-client-id'] === 'internal-usage'
}
})
Custom store
example usage:
NOTE: The timeWindow
will always be passed as the numeric value in millseconds into the store's constructor.
function CustomStore (options) {
this.options = options
this.current = 0
}
CustomStore.prototype.incr = function (key, cb) {
const timeWindow = this.options.timeWindow
this.current++
cb(null, { current: this.current, ttl: timeWindow - (this.current * 1000) })
}
CustomStore.prototype.child = function (routeOptions) {
// We create a merged copy of the current parent parameters with the specific
// route parameters and pass them into the child store.
const childParams = Object.assign(this.options, routeOptions)
const store = new CustomStore(childParams)
// Here is where you may want to do some custom calls on the store with the information
// in routeOptions first...
// store.setSubKey(routeOptions.method + routeOptions.url)
return store
}
fastify.register(require('fastify-rate-limit'), {
/* ... */
store: CustomStore
})
The routeOptions
object passed to the the child
method of the store will contain the same options that are detailed above for plugin registration with any specific overrides provided on the route. In addition the following parameter is provided:
routeInfo
: The configuration of the route including method
, url
, path
, and the full route config
Rate limiting can be configured also for some routes, applying the configuration independently.
For example the allowList
if configured:
The global allowlist is configured when registering it with fastify.register(...)
.
The endpoint allowlist is set on the endpoint directly with the { config : { rateLimit : { allowList : [] } } }
object.
ACL checking is performed based on the value of the key from the keyGenerator
.
In this example we are checking the IP address, but it could be an allowlist of specific user identifiers (like JWT or tokens):
const fastify = require('fastify')()
fastify.register(require('fastify-rate-limit'),
{
global : false, // don't apply these settings to all the routes of the context
max: 3000, // default global max rate limit
allowList: ['192.168.0.10'], // global allowlist access.
redis: redis, // custom connection to redis
})
// add a limited route with this configuration plus the global one
fastify.get('/', {
config: {
rateLimit: {
max: 3,
timeWindow: '1 minute'
}
}
}, (req, reply) => {
reply.send({ hello: 'from ... root' })
})
// add a limited route with this configuration plus the global one
fastify.get('/private', {
config: {
rateLimit: {
max: 3,
timeWindow: '1 minute'
}
}
}, (req, reply) => {
reply.send({ hello: 'from ... private' })
})
// this route doesn't have any rate limit
fastify.get('/public', (req, reply) => {
reply.send({ hello: 'from ... public' })
})
// add a limited route with this configuration plus the global one
fastify.get('/public/sub-rated-1', {
config: {
rateLimit: {
timeWindow: '1 minute',
allowList: ['127.0.0.1'],
onExceeding: function (req) {
console.log('callback on exceededing ... executed before response to client')
},
onExceeded: function (req) {
console.log('callback on exceeded ... to black ip in security group for example, req is give as argument')
}
}
}
}, (req, reply) => {
reply.send({ hello: 'from sub-rated-1 ... using default max value ... ' })
})
In the route creation you can override the same settings of the plugin registration plus the additionals options:
onExceeding
: callback that will be executed each time a request is made to a route that is rate limitedonExceeded
: callback that will be executed when a user reached the maximum number of tries. Can be useful to blacklist clientsThese examples show an overview of the store
feature and you should take inspiration from it and tweak as you need:
The response will have the following headers if enableDraftSpec
is true
:
Header | Description |
---|---|
ratelimit-limit | how many request the client can do |
ratelimit-remaining | how many request remain to the client in the timewindow |
ratelimit-reset | how many seconds must pass before the rate limit resets |
retry-after | contains the same value in time as ratelimit-reset |
Copyright © 2018 Tomas Della Vedova
FAQs
`fastify-rate-limit@5.9.0` has been deprecated. Please use `@fastify/rate-limit@6.0.0` instead.
The npm package fastify-rate-limit receives a total of 2,830 weekly downloads. As such, fastify-rate-limit popularity was classified as popular.
We found that fastify-rate-limit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 17 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.