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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@bauer-group/n8n-nodes-http-throttled-request

v0.3.6

Published

n8n community node with built-in HTTP request throttling (rate limiting)

Readme

@bauer-group/n8n-nodes-http-throttled-request

🚀 Release & NPM Publish npm GitHub package

An n8n community node that adds intelligent rate-limit throttling to HTTP requests. It automatically detects rate-limit responses (HTTP 429, 503, 504) and waits the appropriate time before retrying, using information from response headers.

Features

  • Full V3 Feature Set — Inherits all parameters from the built-in HTTP Request node (50+ auth types, pagination, response format, proxy, SSL, etc.)
  • Automatic Rate Limit Detection — Detects HTTP 429, 503, and 504 status codes
  • Smart Wait Time Calculation — Parses Retry-After, X-RateLimit-*, and HubSpot-specific headers
  • Jitter Support — Prevents thundering herd with configurable random variance

Installation

n8n Community Nodes (Recommended)

  1. Open your self-hosted n8n instance
  2. Go to SettingsCommunity Nodes
  3. Enter @bauer-group/n8n-nodes-http-throttled-request
  4. Click Install

The node appears immediately in the node panel — no restart required.

Community Nodes are only available on self-hosted n8n instances.

Docker

Create a custom Dockerfile that pre-installs the package:

FROM n8nio/n8n:latest
USER root
RUN npm install -g @bauer-group/n8n-nodes-http-throttled-request
USER node

Then build and run:

docker build -t n8n-throttled .
docker run -it --rm -p 5678:5678 n8n-throttled

Or with docker-compose — replace image with build:

services:
  n8n:
    build: .
    ports:
      - "5678:5678"

Quick Start

  1. Add the HTTP Request (Throttled) node to your workflow
  2. Configure it exactly like the built-in HTTP Request node
  3. Throttling is enabled by default — no extra setup needed
  4. When the API returns 429, the node automatically waits and retries

Default Throttling Settings

| Setting | Default | Description | | ------------------------ | ------- | --------------------------------------- | | HTTP Codes | 429 | Status codes that trigger throttling | | Default Wait Time | 5000 ms | Fallback wait when no header is present | | Random Jitter | ±25% | Variance to prevent thundering herd | | Max Throttle Retries | 5 | Max attempts before failing |

Documentation

| Document | Description | | --- | --- | | Configuration | Full parameter reference, throttling settings, safety limits | | How It Works | Throttling behavior, header priority, architecture, execution flow | | Migration Guide | Replace existing HTTP Request nodes (manual, JSON, API script) | | Troubleshooting | Common issues and solutions |

Development

npm install
npm run build
npm test

Project Structure

├── src/
│   └── nodes/
│       └── HttpRequest/
│           ├── HttpRequestThrottled.node.ts   # Main node (V3 composition + fallback)
│           ├── v3-loader.ts                   # Dynamic V3 node loader
│           ├── throttle-wrapper.ts            # Helper interception for throttling
│           ├── throttling.ts                  # Wait time calculation logic
│           ├── throttling-props.ts            # Throttling UI properties
│           └── translations/de/               # German translation
├── docs/                                      # Documentation
├── test/
│   └── throttling.test.ts                     # Unit tests
├── package.json
└── tsconfig.json

License

MIT

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Run tests: npm test
  4. Submit a pull request