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

n8n-nodes-custom-webhook-wait

v1.0.18

Published

Custom n8n node that waits for a webhook call before continuing workflow execution

Readme

n8n-nodes-webhook-wait

A custom n8n node that pauses workflow execution and waits for a webhook call before continuing.

Features

  • Customizable Webhook URL: Set any custom path for your webhook
  • Multiple HTTP Methods: Support for GET, POST, PUT, PATCH, DELETE, HEAD
  • Authentication Options:
    • None
    • Basic Auth
    • Header Auth
  • Dynamic Path Generation:
    • Include execution ID in path
    • Include workflow ID in path
  • Flexible Response Configuration:
    • Custom response codes
    • Custom response headers
    • Custom response body/message
  • Data Handling:
    • Pass through input data
    • Merge webhook data with existing data

Installation

Local Development

  1. Clone this repository to your n8n custom nodes directory:

    cd ~/.n8n/custom
    git clone <this-repo> n8n-nodes-webhook-wait
    cd n8n-nodes-webhook-wait
  2. Install dependencies:

    npm install
  3. Build the node:

    npm run build
  4. Restart n8n

Using npm link (for development)

  1. In this project directory:

    npm link
  2. In your n8n installation directory:

    npm link n8n-nodes-webhook-wait
  3. Restart n8n

Usage

Basic Usage

  1. Add the Webhook Wait node to your workflow
  2. Configure the custom webhook path (e.g., my-custom-webhook)
  3. Set the HTTP method (default: POST)
  4. Run the workflow - it will pause at this node
  5. Send a request to the webhook URL to continue the workflow

Example Workflow

Trigger → Some Processing → Webhook Wait → Continue Processing → End

The workflow will:

  1. Start from the trigger
  2. Process initial nodes
  3. Pause at Webhook Wait and expose a webhook URL
  4. Wait for an external call to the webhook
  5. Continue with the remaining nodes

Webhook URL Format

The webhook URL will be:

https://your-n8n-instance.com/webhook/your-custom-path

Or with execution ID:

https://your-n8n-instance.com/webhook/your-custom-path/execution-id

Authentication

Header Auth

Set a custom header name and expected value. The webhook will only accept calls that include this header with the correct value.

Basic Auth

Configure username and password. The webhook will require HTTP Basic Authentication.

Configuration Options

| Option | Description | Default | |--------|-------------|---------| | Custom Webhook Path | The path segment of the webhook URL | webhook-wait | | Use Full Path | Use path as full path instead of appending to base | false | | HTTP Method | HTTP method to listen for | POST | | Response Code | HTTP status code to return | 200 | | Response Data | What data to return in response | No Response Body | | Include Execution ID | Append execution ID to path | false | | Include Workflow ID | Append workflow ID to path | false | | Pass Through Input Data | Merge input with webhook data | false | | Timeout (Minutes) | Max wait time (0 = infinite) | 0 |

Response Data Options

  • All Entries: Return all webhook data (headers, body, query, params)
  • First Entry JSON: Return only the request body
  • First Entry Binary: Return binary data if present
  • No Response Body: Return empty response
  • Custom Response: Return a custom JSON message

License

MIT