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

v0.1.17

Published

N8N community node for Mindlytics – WhatsApp Business Platform

Downloads

294

Readme

n8n-nodes-mindlytics

An n8n community node for Mindlytics — send WhatsApp template messages, manage contacts, templates, and run broadcast campaigns, all from your n8n workflows.

Resources

| Resource | Operations | |---|---| | Contact | Create, Get, Get Many, Update, Delete, Bulk Import | | Message | Send Template, Get | | Template | Get Many | | Broadcast | Create, Get, Get Many |

Installation

In your n8n instance go to Settings → Community Nodes, click Install, and enter:

n8n-nodes-mindlytics

Credentials

After installation, create a Mindlytics API credential:

| Field | Description | |---|---| | API Key | Generate one in your Mindlytics dashboard under Settings → API Keys (format: wbp_api_...) |

Usage Examples

Send a Template Message

  1. Set Resource → Message, Operation → Send Template
  2. Pick a contact From List, enter a Contact ID, or enter a Phone Number directly (the contact is created automatically if it doesn't exist)
  3. Pick a Template and fill in any header / body / button variables

Bulk Import Contacts

  1. Set Resource → Contact, Operation → Bulk Import
  2. Provide a JSON array:
[
  { "phoneNumber": "+919876543210", "name": "John Doe", "tags": ["vip"] },
  { "phoneNumber": "+919876543211", "name": "Jane Smith" }
]

Create a Broadcast Campaign

  1. Set Resource → Broadcast, Operation → Create
  2. Choose a Template
  3. Set at least one Audience filter (Tag IDs, Language, Source, etc.)
  4. Optionally add static parameters or per-contact field mappings for personalisation

List Broadcasts

  1. Set Resource → Broadcast, Operation → Get Many
  2. Filter by status (Sent, Scheduled, Failed, …) or enable Return All to auto-paginate

Notes

  • Phone numbers must be in E.164 format (e.g. +919876543210) or without the leading + (e.g. 919876543210) — the API adds it automatically
  • Only APPROVED templates can be sent
  • Contacts must be ACTIVE and not opted out to receive messages
  • Get Many operations support Return All to auto-paginate large result sets

Links

License

MIT