nestjs-rate-limiter
Advanced tools
Comparing version
@@ -28,3 +28,4 @@ "use strict"; | ||
maxQueueSize: 100, | ||
errorMessage: 'Rate limit exceeded' | ||
errorMessage: 'Rate limit exceeded', | ||
limiterKey: undefined | ||
}; |
@@ -163,3 +163,3 @@ "use strict"; | ||
const rateLimiter = yield this.getRateLimiter(reflectedOptions); | ||
const key = request.ip.replace(/^.*:/, ''); | ||
const key = this.options.limiterKey || request.ip.replace(/^.*:/, ''); | ||
yield this.responseHandler(response, key, rateLimiter, points, pointsConsumed); | ||
@@ -166,0 +166,0 @@ return next.handle(); |
@@ -28,2 +28,3 @@ import { Provider } from '@nestjs/common'; | ||
errorMessage?: string; | ||
limiterKey?: string; | ||
} | ||
@@ -30,0 +31,0 @@ export interface RateLimiterOptionsFactory { |
{ | ||
"name": "nestjs-rate-limiter", | ||
"version": "2.5.6", | ||
"version": "2.6.0-alpha", | ||
"description": "Highly configurable rate limiter library", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -421,2 +421,10 @@ <p align="center"> | ||
#### ● limiterKey | ||
<code> Default: Client's Ip Address </code> | ||
<br> | ||
<code> Type: string</code> | ||
<br> | ||
limiterKey option allows you to control scenarios such as applying rate limiter based on User Account instead of Ip Address | ||
# Benchmarks | ||
@@ -423,0 +431,0 @@ |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
39998
0.81%426
0.47%452
1.8%1
Infinity%