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

v1.2.0

Published

Nó customizado do N8N para integração com a RederApi — plataforma de gerenciamento de instâncias WhatsApp com suporte a mensagens, webhooks, grupos e contatos.

Readme

n8n-nodes-rederapi

npm version

Nó customizado para o N8N que integra com a RederApi — plataforma de gerenciamento de instâncias WhatsApp via Baileys.

Instalação

Método 1: Via Interface do N8N (Recomendado)

  1. Acesse seu N8N → SettingsCommunity Nodes
  2. Clique em Install a community node
  3. Digite: n8n-nodes-rederapi
  4. Clique em Install

Método 2: Via arquivo .tgz (instalação local)

Se você tem acesso ao servidor onde o N8N está instalado:

# Navegue até o diretório de dados do N8N
cd ~/.n8n

# Instale o pacote localmente
npm install n8n-nodes-rederapi

# Reinicie o N8N

Método 3: Via npm link (desenvolvimento)

cd /home/ubuntu/n8n-nodes-evolution-clone
npm link

# No diretório de dados do N8N
cd ~/.n8n
npm link n8n-nodes-rederapi

Configuração das Credenciais

  1. No N8N, vá em CredentialsNew Credential
  2. Busque por RederApi
  3. Preencha:
    • Server URL: URL da sua instância (ex: https://sua-api.manus.space)
    • API Key: Sua chave de API gerada no painel em API Keys

Nós Disponíveis

1. RederApi (Ações)

Nó de ação com 6 recursos e 50+ operações:

| Recurso | Operações | |---------|-----------| | Instância | Criar, Listar, Buscar, Conectar, Desconectar, Reiniciar, Status, Deletar, Definir Presença | | Mensagem | Enviar Texto, Imagem, Vídeo, Áudio, Documento, Localização, Contato, Botões, Lista, Enquete, Reagir, Deletar, Editar, Listar | | Chat | Listar, Verificar Número, Marcar Lida/Não Lida, Arquivar, Deletar, Foto de Perfil, Presença, Bloquear | | Contato | Listar, Buscar | | Grupo | Criar, Listar, Buscar, Atualizar Nome/Descrição, Participantes (listar/add/remover/promover/rebaixar), Link de Convite, Sair | | Webhook | Listar, Criar, Atualizar, Deletar |

2. RederApi Trigger (Eventos)

Nó trigger que recebe eventos em tempo real:

  • MESSAGES_UPSERT — Mensagem recebida/enviada
  • MESSAGES_UPDATE — Status da mensagem (enviado/entregue/lido)
  • MESSAGES_DELETE — Mensagem deletada
  • CONNECTION_UPDATE — Estado da conexão
  • QRCODE_UPDATED — Novo QR Code gerado
  • PRESENCE_UPDATE — Presença do contato
  • CHATS_UPSERT — Conversas atualizadas
  • CONTACTS_UPSERT — Contatos atualizados
  • GROUPS_UPSERT — Grupos atualizados
  • GROUP_PARTICIPANTS_UPDATE — Participantes de grupo
  • CALL — Chamada recebida

Filtros disponíveis no Trigger:

  • Filtrar apenas mensagens recebidas (ignorar fromMe)
  • Filtrar por número específico
  • Apenas grupos ou apenas contatos individuais

Exemplo de Workflow

[Evolution Clone Trigger] → [IF: tipo de mensagem] → [Evolution Clone API: Enviar Texto]

Changelog

v1.2.0 (2026-03-02)

  • Correção: Formato de resposta da API agora é 100% compatível com Evolution API ({ success, data: { key, pushName, status, message, messageType, messageTimestamp, instanceId, source } })
  • Melhoria: Adicionadas 20+ rotas de compatibilidade no servidor (aliases para Evolution API)
  • Melhoria: Middleware de fallback JSON para rotas /api/ não encontradas (evita retorno de HTML no N8N)
  • Melhoria: Trigger corrigido para aceitar eventos no formato MESSAGES_UPSERT e messages.upsert simultaneamente
  • Melhoria: Metadados enriquecidos no trigger (_meta com sender, remoteJid, originalEvent)

v1.1.0

  • Correção do filtro de eventos no trigger
  • Suporte ao novo formato de payload da API
  • Metadados enriquecidos no output do trigger

v1.0.0

  • Lançamento inicial com suporte a instâncias, mensagens, chats, contatos, grupos e webhooks

Requisitos

  • N8N versão 1.54.4 ou superior
  • RederApi rodando e acessível

Suporte