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-whatsapp-separate-triggers

v1.0.3

Published

n8n to connect with WhatsApp (Whatsapp HTTP API) - Updated with separate triggers for better organization

Downloads

4

Readme

@Multiculous/n8n-nodes-whatsapp

This is a n8n community node. It lets you use WAHA - WhatsApp HTTP API in your n8n workflows.

🆕 New in Version 2025.2.18

This version includes separate trigger nodes for different WhatsApp events, providing better organization and performance:

Available Trigger Nodes

  1. WhatsApp Trigger (Original) - Handles all events in one node
  2. WhatsApp Message Trigger - Dedicated to message events
  3. WhatsApp Session Trigger - Handles session status changes
  4. WhatsApp Call Trigger - Manages call-related events
  5. WhatsApp Group Trigger - Handles group events
  6. WhatsApp Presence Trigger - Manages presence/status events
  7. WhatsApp Chat Trigger - Handles chat management events

Benefits of Separate Triggers

  • Better Organization: Each workflow focuses on specific event types
  • Improved Performance: Only relevant events trigger each workflow
  • Easier Debugging: Clear separation of concerns
  • Cleaner Workflows: More focused and maintainable automation

👉 Generated from WAHA OpenAPI using devlikeapro/n8n-openapi-node

NPM Version

WAHA Workflow Example Screenshot

Install WAHA n8n node

Go to your n8n => Settings => Community nodes and install:

@Multiculous/n8n-nodes-whatsapp

If you need help with that, check the Install community nodes

Links

Workflow Examples

👉 Check out n8n-workflows folder for examples.

🚀 Quick Start with Separate Triggers

Installation

npm install @umairabubakkar/n8n-nodes-whatsapp

Usage Examples

For Message Handling

Use WhatsApp Message Trigger instead of the combined trigger:

  • Select specific message events (message, message.any, message.reaction, message.revoked)
  • Get a dedicated webhook URL for message events
  • Cleaner workflow focused only on messages

For Session Monitoring

Use WhatsApp Session Trigger:

  • Monitor connection status changes
  • Handle authentication events
  • Separate webhook URL for session events

For Call Management

Use WhatsApp Call Trigger:

  • Handle incoming calls
  • Track call acceptance/rejection
  • Dedicated call event processing

Migration from Combined Trigger

If you're using the original WhatsApp Trigger:

  1. Identify Event Types: Check which events your workflows use
  2. Choose Appropriate Trigger: Replace with the specific trigger node
  3. Update Webhook URLs: Configure your WhatsApp instance with new URLs
  4. Test Workflows: Ensure proper functionality

Webhook Configuration

Configure your WAHA instance to send different events to different endpoints:

Message events → WhatsApp Message Trigger webhook URL
Session events → WhatsApp Session Trigger webhook URL  
Call events → WhatsApp Call Trigger webhook URL
Group events → WhatsApp Group Trigger webhook URL
Presence events → WhatsApp Presence Trigger webhook URL
Chat events → WhatsApp Chat Trigger webhook URL

This approach provides better resource utilization and clearer workflow organization.