New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nestjs-rate-limiter

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nestjs-rate-limiter - npm Package Compare versions

Comparing version

to
2.6.0-alpha

3

dist/default-options.js

@@ -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 @@