Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
request-rate-clock
Advanced tools
This package provides a clock that can be used to limit the rate of requests to a server. It is useful for rate limiting requests to a server, for example to prevent a server from being overwhelmed by too many requests or using rate-limited APIs like the GitHub API, Spotify API, etc.
npm install request-rate-clock
import RateClock from "request-rate-clock";
const clock = RateClock.create(5, 1000); // Allow 5 requests per second
(async () => {
for (let i = 0; i < 1000; i++) {
await clock.acquire();
console.log("Request", i + 1);
}
})().catch(console.error);
RateClock.create(rate: number, interval: number): RateClock
FAQs
Rateclock provides a clock mechanism to work with api rate limits
The npm package request-rate-clock receives a total of 9 weekly downloads. As such, request-rate-clock popularity was classified as not popular.
We found that request-rate-clock demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.