npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rate-throttle-limiter

v1.0.1

Published

A simple Express middleware package designed to provide flexible and efficient rate limiting and throttling capabilities for web applications.

Downloads

6

Readme

An Express middleware for rate limiting and throttling incoming requests based on IP addresses using Redis for storage. It offers both long-term rate limiting and short-term throttling, providing protection against abuse and ensuring fair usage of resources.

Features

  • Implements a hybrid rate limiting approach combining Fixed Window Counter and Leaky Bucket algorithms.
  • Limits the number of requests from a single IP address within a specified time window.
  • Throttles requests to a specified rate to prevent sudden bursts of traffic.
  • Utilizes Redis for efficient storage and distributed rate limiting across multiple instances.

Installation

npm install rate-throttle-limiter

Usage:

import { RateThrottleLimit } from 'rate-throttle-limiter';
import Redis from 'ioredis';
import express from 'express';
const PORT = 8080;
const app = express();

const redisClient = new Redis(options);

const rateLimitThrottle = new RateLimitThrottle({
  rateLimitWindowMs: 15 * 60 * 1000, // Time window in milliseconds for rate limiting
  maxRequestsPerWindow: 100, // Max requests per window
  throttleBurst: 10, // Initial burst of requests allowed
  throttleRate: 5, // Request's allowed per second after the burst
  redisClient: redisClient,
  customMessage: 'Custom rate limit exceeded message',
});

app.use(rateLimitThrottle.middleware());

app.get('/api/v1/user', (req, res) => {
  res.send('Hi.');
});

app.listen(PORT, () => {
  console.log(`Server listening at PORT - ${PORT}`);
});

Configuration

All function options may be async. Click the name for additional info and default values.

| Option | Type | Remarks | | ---------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | | rateLimitWindowMs | number | Specifies the duration within which the maximum number of requests is allowed (Default is 15 minutes). | | maxRequestsPerWindow | number | Limits the number of requests that can be made from a single IP address within the specified time window (rateLimitWindowMs) (Default is 100). | | throttleBurst | number | Allows a certain number of requests to proceed without delay or throttling as soon as the middleware starts processing requests (Default is 10). | | throttleRate | number | Sets the throttle rate for controlling the rate of incoming requests beyond the initial burst (Default is 5). | | redisClient | Redis | Provides a connection to a Redis server where rate limiting information is stored, allowing for distributed rate limiting across multiple instances. | | customMessage | string | Optional custom message to be returned when rate limits are exceeded |

Contributing

Contributions to rate-throttle-limiter are welcome! If you find any issues or want to enhance the library, please create an issue or submit a pull request on the GitHub repository.