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

v0.1.0

Published

Nodo community de n8n para Wapify: enviar mensajes de WhatsApp por API (x-api-key), envío masivo, estado de instancia y uso.

Readme

n8n-nodes-wapify

Nodo community de n8n para Wapify — envío de WhatsApp por API. Es un módulo de integración independiente del backend: solo traduce operaciones del flujo n8n a la API pública de Wapify (/wapify/v1) usando la credencial x-api-key. No contiene lógica de negocio (límites, anti-baneo y planes se aplican en el backend).

El mismo patrón sirve para Make: ahí se usa un módulo HTTP/conector apuntando a /wapify/v1 con el header x-api-key. Este paquete es el conector nativo de n8n.

Instalación

Opción A — n8n Cloud / Self-hosted (Settings → Community Nodes): buscar/instalar n8n-nodes-wapify.

Opción B — local (desarrollo):

cd integrations/n8n-nodes-wapify
npm install
npm run build            # compila a dist/
# enlazar en tu instancia n8n self-hosted:
npm link
cd ~/.n8n/nodes && npm link n8n-nodes-wapify
# reiniciar n8n

Credencial — "Wapify API"

| Campo | Valor | |---|---| | Base URL | https://ws.zigo.solutions/wapify/v1 (por defecto) | | API Key | x-api-key de la empresa (panel Wapify → Claves de API) |

La prueba de credencial llama a GET /uso. La doc interactiva está en /wapify/v1/docs.

Operaciones

| Recurso | Operación | Endpoint Wapify | |---|---|---| | Mensaje | Enviar | POST /instance/{id}/send | | Mensaje | Enviar Lote | POST /instance/{id}/send-batch | | Instancia | Listar | GET /instances | | Instancia | Estado | GET /instance/{id}/status | | Instancia | Salud | GET /instance/{id}/salud | | Cuenta | Uso | GET /uso | | Cuenta | Historial | GET /messages?limite=N |

Las respuestas de la API (incluido el manejo de límites/plan, p. ej. 403 FEATURE_NOT_AVAILABLE, 422 NUMBER_NOT_ON_WHATSAPP, 429) pasan tal cual al flujo para que el usuario las maneje.

Ejemplo de flujo

TriggerWapify: Mensaje → Enviar (instanceId, número, texto) → seguir el flujo con la respuesta (mensajeId, estado). Para campañas: Enviar Lote con varios números.

Arquitectura (separación de responsabilidades)

  • Este paquete = capa de integración (n8n ↔ HTTP). Sin estado ni reglas de negocio.
  • Wapify backend (/wapify/v1) = envío, colas, anti-baneo, planes, webhooks.
  • Mantener separado evita mezclar "flujos de integración" con el envío directo.

Build / publicación

npm run lint     # tsc --noEmit
npm run build    # genera dist/
npm publish      # (cuando esté listo para el registro de n8n community)