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-workflow-triggers

v1.0.6

Published

n8n community node plugin to programmatically control and trigger Multiple Manual Trigger nodes in workflows. Dependent on n8n-nodes-multiple-manual-triggers.

Readme

n8n-nodes-workflow-triggers

This is an n8n community node package that allows programmatically orchestrating and triggering workflows starting from individual Multiple Manual Trigger nodes.

This plugin is a companion to n8n-nodes-multiple-manual-triggers and depends on it.

Key Features

  • Programmatic Triggering: Trigger manual triggers in workflows from external inputs or internal automation.
  • Workflow & Trigger Autocomplete: Dynamically loads all workflows containing multiple manual triggers and allows selection of specific trigger nodes in the selected workflow.
  • Result Retrieval: Fetch status, all run data, or the output of a specific node after execution completes.
  • Custom Timeouts: Configure execution timeouts and failure handling behavior.

Requirements

This plugin requires:

  1. n8n-nodes-multiple-manual-triggers installed on your n8n instance.
  2. An n8n API Key to dynamically fetch workflows and poll executions.

Credentials Setup

To use this node, you need to create a n8n Workflow Triggers API credential:

  1. n8n Instance URL: The root URL of your n8n instance (e.g., http://localhost:5678 or https://n8n.yourdomain.com).
  2. n8n API Key: Created from your n8n instance under Settings > n8n API.

Available Parameters

  • Workflow: A dynamic dropdown listing all workflows that utilize the Multiple Manual Trigger node.
  • Trigger Node: A dynamic dropdown listing all Multiple Manual Trigger nodes inside the selected workflow.
  • Response Mode:
    • Only Success / Status: Returns high-level execution metadata (execution ID, status, success boolean).
    • Output of Specific Node: Returns the JSON outputs of a specific node from the executed workflow.
    • All Nodes Run Data: Returns the full execution data for all executed nodes.
  • Output Node: Dynamically populated list of nodes in the target workflow. (Visible when Response Mode is set to Output of Specific Node).
  • Additional Fields:
    • Timeout (Seconds): Maximum time to wait for the workflow execution to finish (default: 60 seconds).
    • Fail Node on Workflow Failure: If enabled, the calling node will fail if the triggered workflow fails (default: true).

Installation

Community Node Install (Standard)

Install this node package using the n8n community node directory:

n8n-nodes-workflow-triggers

Local Development Setup

To link and run this node locally:

  1. Build & Link the Node:

    cd /path/to/n8n-nodes-workflow-triggers
    npm install
    npm run build
    npm link
  2. Mount in your local n8n installation:

    cd ~/.n8n/nodes
    npm link n8n-nodes-workflow-triggers
  3. Restart n8n.


License

MIT