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-volara

v0.1.0

Published

n8n community node for Volara — send WhatsApp/omnichannel messages, manage contacts, create broadcasts, and trigger workflows on Volara events.

Readme

n8n-nodes-volara

An n8n community node for Volara — the omnichannel WhatsApp/messaging and CRM platform. Use it to send messages, manage contacts, launch broadcasts, read conversations, and start workflows when Volara events arrive.

n8n is a workflow automation tool. Volara is a messaging and customer platform. Together you can wire up things like "when a new WhatsApp message comes in, look up the contact, and post it to Slack" without writing code.

Installation

In n8n (community nodes)

  1. Open your n8n instance.
  2. Go to Settings → Community Nodes.
  3. Click Install, enter n8n-nodes-volara, and confirm.

After installation the Volara and Volara Trigger nodes appear in the node panel.

Community nodes are available on self-hosted n8n. On n8n Cloud, verified community nodes can be installed from the same panel.

Manual / development install

git clone https://github.com/volara-asia/volara-n8n.git
cd volara-n8n
npm install
npm run build
# link into your n8n custom nodes folder

Credentials

The node uses one credential, Volara API:

  1. In Volara, go to Settings → API keys and create a key.
  2. In n8n, add a new Volara API credential.
  3. Paste the API Key.
  4. Leave Base URL as https://api.volara.chat unless you run a self-hosted or region-specific Volara deployment.
  5. Click Test — it calls GET /api/v1/metrics/dashboard to confirm the key works.

The key is sent as Authorization: Bearer <key> on every request and is never logged.

Operations (Volara node)

Message

  • Send — send a message into a conversation (POST /api/v1/conversations/{id}/messages). Provide a plain Text body, or a structured Content JSON payload for templates/media, plus an optional Type hint.

Contact

  • Create — create a contact in the CRM (POST /api/v1/customers). Fields: name, email, phone number (E.164, e.g. +6281234567890), source.
  • Get — fetch one contact by ID (GET /api/v1/customers/{id}).
  • List — list or search contacts (GET /api/v1/customers) with search, sort, order, and optional auto-paging via Return All.

Broadcast

  • Create — create a broadcast campaign (POST /api/v1/broadcasts). Fields: title, message content, target audience JSON.
  • List — list broadcasts (GET /api/v1/broadcasts).

Conversation

  • Get — fetch one conversation by ID (GET /api/v1/conversations/{id}).
  • List — list or search conversations (GET /api/v1/conversations) filtered by status and free-text search, with optional auto-paging.

Trigger (Volara Trigger node)

The trigger starts a workflow when Volara delivers a webhook event such as a new message, a new or updated conversation, or a ticket.

  1. Add a Volara Trigger node and open it.
  2. Copy the node's Production URL.
  3. In Volara, go to Settings → Webhooks, paste the URL, and choose which events to send.
  4. Optionally narrow the events the node reacts to with the Events field.

Volara delivers a JSON body of the form:

{
  "id": "evt_...",
  "type": "message.received",
  "createdAt": "2026-06-23T10:00:00Z",
  "data": { },
  "organizationId": "org_..."
}

Signature verification (pending)

Volara signs the raw request body with HMAC-SHA256 and sends it in the x-volara-signature header (hex, optionally prefixed sha256=). Verifying that header protects the endpoint from forged events.

Automatic subscription registration and HMAC verification are not yet active — they firm up once the Volara webhook signing API is finalized. The node already exposes a Signing Secret option so workflows are ready to switch verification on without reconfiguration. Until then, treat the webhook URL as a shared secret.

Compatibility

  • Requires n8n with n8nNodesApiVersion: 1.
  • Node.js 18.10 or newer.

Resources

License

MIT — see LICENSE.