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

wolfsocket

v1.0.0

Published

WOLF TECH fork of Baileys with native Group Status (groupStatusMessageV2) support for text, image, video, audio, and sticker posts.

Downloads

196

Readme

wolfsocket

A Baileys fork maintained under WOLF TECH, adding native Group Status support — posting text, image, video, audio, and sticker updates that are visible only within a specific WhatsApp group (distinct from the regular status@broadcast story that goes to your whole contact list).

This is a fork, not a replacement. Everything in upstream Baileys works exactly the same — wolfsocket adds one new socket method on top: sock.sendGroupStatus().

Install

npm install wolfsocket

Quick start

Usage is identical to upstream Baileys — same makeWASocket, same auth flow, same sendMessage. The only addition is sock.sendGroupStatus():

import makeWASocket, { useMultiFileAuthState } from 'wolfsocket'

const { state, saveCreds } = await useMultiFileAuthState('auth_info')
const sock = makeWASocket({ auth: state })
sock.ev.on('creds.update', saveCreds)

// text group status
await sock.sendGroupStatus(groupJid, { text: 'hello from the group status feature' })

// image group status
await sock.sendGroupStatus(groupJid, { image: imageBuffer, caption: 'caption text' })

// video group status
await sock.sendGroupStatus(groupJid, { video: videoBuffer, caption: 'caption', gifPlayback: false })

// audio group status
await sock.sendGroupStatus(groupJid, { audio: audioBuffer, mimetype: 'audio/ogg; codecs=opus', ptt: true })

// sticker group status
await sock.sendGroupStatus(groupJid, { sticker: stickerBuffer })

groupJid is a normal group JID (ends in @g.us) — the same one you'd pass to sock.sendMessage().

API

sock.sendGroupStatus(jid, content)

| param | type | description | |-----------|-------------------------------------------------------------------|-------------------------------------------------| | jid | string | group JID ([email protected]) | | content | AnyMessageContent | same content shape accepted by sock.sendMessage |

Returns a Promise<WAMessage> with the sent message's key.

What's different from upstream Baileys

  • Adds src/Socket/groupStatus.ts, wired into sock.sendGroupStatus().
  • Fixes a mediatype stanza-detection gap in relayMessage that caused media (image/video/etc.) group-status posts to silently fail to render correctly, while text posts worked fine. See CHANGES.md for details.
  • No other behavior changes — everything else is stock Baileys.

License

MIT — see LICENSE. This package is a modified fork of Baileys by Rajeh Taher / WhiskeySockets, used under its original MIT license. The original copyright notice is preserved in full; modifications and additions (including Group Status support) by Briton Kiplangat (Silent Wolf) / WOLF TECH are licensed under the same terms.