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

v0.1.2

Published

n8n community node for ChitChase — WhatsApp message templates, CRUD, send, and broadcast.

Readme

n8n-nodes-chitchase

n8n community node for ChitChase — manage WhatsApp message templates (list, create, update, delete, sync) and send templates to a conversation or broadcast to multiple conversations.

Source: github.com/chitchase/n8n-node-chitchase (npm package name remains n8n-nodes-chitchase per n8n community node conventions).

Install

Community Nodes (recommended)

In n8n: Settings → Community nodes → Install and enter n8n-nodes-chitchase, or install from the community node browser if the package is verified.

Manual / self-hosted

cd ~/.n8n/nodes  # or your custom nodes directory
npm install n8n-nodes-chitchase

See n8n community nodes.

Credentials

Create ChitChase API credentials:

| Field | Description | | --- | --- | | API Token | Bearer token from your ChitChase account settings | | Base URL | Default https://chitchase.com (change only for staging/self-hosted) | | Default Phone Number ID | WhatsApp phone number UUID in ChitChase — used for template dropdowns and optional filtering |

Use Test to call GET /api/hello and confirm the token. For stricter checks, set Default Phone Number ID and validate access in a workflow using Template → List by Phone.

Node: ChitChase

Resource: Template

| Operation | Description | | --- | --- | | List Templates | GET /api/whatsapp-message-templates with filters, pagination, optional “return all” | | List by Phone | GET /api/phone-numbers/{id}/templates (rich translations / placeholders) | | Create | POST /api/whatsapp-message-templates (flat payload: name, category, language, body, body_example JSON array, etc.) | | Update | PUT /api/whatsapp-message-templates/{id} | | Delete | DELETE /api/whatsapp-message-templates/{id} | | Sync From Meta | POST /api/whatsapp-message-templates/sync |

Optional Phone Number ID on the node overrides the credential default (filters, dropdown data, phone_number_id on create).

Resource: Message

| Operation | Description | | --- | --- | | Send to Conversation | POST multipart to /api/conversations/{id}/messages/whatsapp-message-template — requires Meta template ID (meta_id) plus optional ordered parameters and optional header image binary | | Broadcast | POST multipart to /api/groups/{group_id}/broadcast/sendtemplate name + language (manual or loaded from list), conversation IDs, optional parameters and header image |

Template parameters ({{1}}, {{2}}, …)

Runtime values must match the order of placeholders in the approved template:

  • Fixed order: add one row per value in Values.
  • JSON / Expression: JSON array, e.g. ["Alice","Order #12"] or ={{ [$json.name, $json.code] }}.

Broadcast template picker

Choose Template → Choose From List to load templates for the effective phone number ID (credential default or node override). Send to Conversation still requires Meta template ID separately when the API does not expose it on template list responses.

Development

npm install
npm run build
npm run lint
npm run dev   # local n8n with hot reload

Publish to npm (verified community node)

This package follows Submit community nodes:

  • Keyword: n8n-community-node-package
  • Publish with GitHub Actions and npm provenance (publish.yml + npm run release)
  • Configure npm Trusted Publishers (or NPM_TOKEN) as described in .github/workflows/publish.yml
  • From May 1, 2026, Creator Portal verification requires provenance publishing

Then submit the package in the n8n Creator Portal.

API reference

OpenAPI export used during development: docs/chitchase-docs.json.

License

MIT — see LICENSE.md.