Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ng-http-rate-limiter
Advanced tools
ng-http-rate-limiter
allows you to limit calls to particular URL patterns such that they only occur under a maximum rate per second. If you issue calls faster than that, the rate limiter will delay calls to maintain the chosen rate. You can configure multiple rate limiter configs, each of which match a different URL pattern and maintain their own queue.
This code was extracted from Destiny Item Manager, and is intended for use with Angular 1.
ng-http-rate-limiter
is available for use directly, via AMD (RequireJS), or in NodeJS. It is installable as ng-http-rate-limiter
from either NPM or Bower.
var myModule = angular.module('myapp', ['ngHttpRateLimiter']);
myModule
.config(["ngHttpRateLimiterProvider", function(rateLimiterConfigProvider) {
// No more than one request to slowdomain.com every second
rateLimiterConfigProvider.addLimiter(/slowdomain.com/, 1, 1000);
// Send a maximum of three requests in any given 5 second period to a particular API
rateLimiterConfigProvider.addLimiter(/api.com\/limited-api\//, 3, 5000);
}])
.config(["$httpProvider", function($httpProvider) {
// Install the interceptor
$httpProvider.interceptors.push("ngHttpRateLimiterInterceptor");
}]);
First, install NodeJS however you like for your system (on OSX, I use brew install node
).
Then check out and build the project:
npm install -g grunt-cli
git clone https://github.com/bhollis/ng-http-rate-limiter
cd ng-http-rate-limiter
npm install
grunt
Copyright (c) 2016 Benjamin Hollis. MIT Licensed, see MIT-LICENSE.txt for details.
FAQs
$http rate limiting in Angular
The npm package ng-http-rate-limiter receives a total of 9 weekly downloads. As such, ng-http-rate-limiter popularity was classified as not popular.
We found that ng-http-rate-limiter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.