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

wa_meow

v0.1.0

Published

WhatsApp bridge using whatsmeow - OpenClaw channel plugin

Readme

Jo WhatsApp OpenClaw Plugin

OpenClaw channel plugin for WhatsApp using the whatsmeow Go library.

Architecture

┌─────────────────────────────────────────────────┐
│ OpenClaw Gateway (Node.js)                      │
│  └── Plugin: @jo/whatsapp                       │
│       └── HTTP/SSE client                       │
└────────────────────┬────────────────────────────┘
                     │ HTTP (send, status)
                     │ SSE (inbound messages)
                     ▼
┌─────────────────────────────────────────────────┐
│ wa_meow Server (Go + whatsmeow)             │
│  ├── POST /sessions         (create session)   │
│  ├── GET  /sessions/qr      (SSE QR stream)    │
│  ├── GET  /sessions/status  (connection status)│
│  ├── POST /messages/send    (send text)        │
│  ├── POST /messages/image   (send image)       │
│  ├── POST /messages/location(send location)    │
│  ├── POST /messages/react   (send reaction)    │
│  ├── POST /messages/typing  (typing indicator) │
│  └── GET  /events           (SSE message stream)│
└─────────────────────────────────────────────────┘

Installation

1. Start the Go Server

cd wa_meow
go run ./cmd/server

# Or build and run
go build -o server ./cmd/server
./server

Environment variables:

  • PORT: Server port (default: 8090)
  • DATA_DIR: Directory for session databases (default: /data/whatsapp)
  • JO_BOT_URL: Optional jo_bot URL for session persistence
  • WHATSAPP_SESSION_KEY: Base64 encryption key for session backup

2. Install the Plugin

Copy the plugin to your OpenClaw extensions directory:

cp -r wa_meow/plugin ~/.openclaw/extensions/wa_meow
cd ~/.openclaw/extensions/wa_meow
npm install

Or add to plugins.load.paths in your OpenClaw config:

plugins:
  load:
    paths:
      - /path/to/wa_meow/plugin

3. Configure the Channel

Add to your OpenClaw config:

channels:
  wa_meow:
    serverUrl: http://localhost:8090
    accounts:
      main:
        userId: 1
        enabled: true

4. Pair WhatsApp

Use the OpenClaw CLI or UI to start the pairing wizard:

openclaw channels pair wa_meow --account main

Scan the QR code with WhatsApp on your phone.

Features

  • ✅ Send/receive text messages
  • ✅ Send images with captions
  • ✅ Send locations
  • ✅ Reactions
  • ✅ Typing indicators
  • ✅ Multi-account support
  • ✅ QR code pairing
  • ✅ Session persistence
  • ✅ Group chat support (info, participants)

API Reference

Config Schema

interface JoWhatsAppConfig {
  serverUrl?: string;  // Default: http://localhost:8090
  accounts?: {
    [accountId: string]: {
      userId: number;      // User ID for the Go server
      enabled?: boolean;   // Default: true
    };
  };
}

Capabilities

  • Chat types: DM, Group
  • Media: Images (more types coming)
  • Reactions: ✅
  • Typing indicators: ✅
  • Threads: ❌