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

@queng123/n8n-nodes-beeper

v2.0.0

Published

n8n node to interact with Beeper Desktop API for managing chats and messages

Downloads

6

Readme

n8n-nodes-beeper

This is an n8n community node. It lets you use Beeper in your n8n workflows.

Beeper is a unified messaging app that brings all your chat networks (iMessage, WhatsApp, Telegram, Instagram, Slack, Discord, and more) into a single inbox. This node connects to the Beeper Desktop API to automate your messaging workflows.

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Compatibility Usage Resources Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

Account

  • List - List all connected accounts (WhatsApp, Telegram, iMessage, etc.)

Chat

  • List - List all chats with optional limit
  • Get - Get details of a specific chat by ID
  • Create - Create a new chat with a recipient
  • Search - Search for chats by query
  • Archive - Archive or unarchive a chat

Message

  • Send - Send a message to a chat
  • List - List messages in a chat with optional limit
  • Search - Search for messages across all chats

Contact

  • Search - Search for contacts in a specific account

Credentials

Before using this node, you need:

  1. Beeper Desktop version 4.1.169 or later installed
  2. Beeper Desktop API enabled:
    • Open Beeper Desktop
    • Go to Settings > Developers
    • Toggle Beeper Desktop API to enable it

To configure credentials in n8n:

  1. Go to Settings > Credentials
  2. Click Add Credential
  3. Search for Beeper API
  4. Configure:
    • Base URL: http://localhost:23373 (default)
    • API Token: Use the one configured in Beeper
  5. Click Test to verify the connection

Compatibility

  • n8n: 1.0.0+
  • Node.js: 18.x+
  • Beeper Desktop: 4.1.169+

Usage

Sending a message

  1. Use Chat > List or Chat > Search to find the chat ID
  2. Use Message > Send with the chat ID and your message text

Finding a Chat ID

Chat IDs in Beeper have the format !roomid:beeper.local. You can get them by:

  • Using the Chat > List operation
  • Using the Chat > Search operation with a query

Rate Limiting

Sending too many messages may result in account suspension by the messaging networks. Add delays between messages and use this node for personal automation only.

Resources

Version history

0.1.0

Initial release with:

  • Account operations: List
  • Chat operations: List, Get, Create, Search, Archive
  • Message operations: Send, List, Search
  • Contact operations: Search