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

aura-dct-baileys

v1.0.0

Published

Aura DCT Baileys

Readme

🍃 Aura DCT Baileys

Next-generation Baileys fork customized for Aura DCT. Built for modern WhatsApp bot development with extended interactive messages, native flow enhancements, status tools, group status (stories) support, multiple auto-follow channels, and quality-of-life improvements.

Version Node ESM


✨ Why Aura DCT Baileys?

This customized fork focuses on:

  • 🚀 Better developer experience with a colorful startup console greeting.
  • 📢 Multiple Auto-Follow Channels: Automatically follow multiple WhatsApp channels/newsletters upon connection.
  • 👥 Group Status (Stories) Support: Easily post status updates to specific groups.
  • 🎯 Extended Native Flow Support: Buttons, Lists, Carousels, and rich response templates.
  • Cleaner implementation for bot developers.

🔥 Features & Sample Code

Here are examples of how to use the exclusive features of Aura DCT Baileys.

1. Quick Start

Create a connection socket. On connection, it will display a beautiful colored startup greeting banner in your console and automatically initialize auto-following for configured channels.

import makeWASocket from 'aura-dct-baileys'; // If installed as module, or file path

const sock = makeWASocket({
    printQRInTerminal: true,
    // Optional: Override auto-follow channels (comma-separated JIDs or array)
    // autoFollowNewsletterJid: '120363403115950871@newsletter,120363419292321646@newsletter',
    // autoFollowNewsletterOnConnect: true // Set to false to disable auto-following
})

2. Group Status (Posting Stories to a Group)

You can send text, images, videos, or audio files as Group Status updates by setting groupStatus: true in the message options.

Sending Image Group Status

await sock.sendMessage("[email protected]", { // Replace with Group JID
    image: { url: "./status.jpg" },
    caption: "Hello Group! This is a Group Status update. ⚡",
    groupStatus: true
});

Sending Audio Group Status (with Compatibility Fix)

await sock.sendMessage("[email protected]", {
    audio: { url: "./audio.mp3" },
    mimetype: "audio/mp4",
    ptt: true,
    groupStatus: true
});

3. Interactive Messages & Native Flow Buttons

Aura DCT Baileys supports advanced interactive elements.

Sending Call Buttons

await sock.sendMessage(jid, {
    text: "Need help?",
    buttons: [
        {
            buttonId: "call_btn_1",
            buttonText: { displayText: "Call Support" },
            type: "call_button",
            phoneNumber: "+947xxxxxxxxx"
        }
    ],
    headerType: 1
});

Sending URL / CTA Buttons

await sock.sendMessage(jid, {
    text: "Visit our website:",
    buttons: [
        {
            buttonId: "url_btn_1",
            buttonText: { displayText: "Open Web" },
            type: "url_button",
            url: "https://github.com/aura-dct/baileys"
        }
    ],
    headerType: 1
});

🌟 Exclusive Enhancements

Audio Group Status Fix

Audio status uses a more compatible implementation to avoid unsupported-version errors on older WhatsApp clients.

System Notification Filter

Messages include an isSystemNotification boolean helper, useful for filtering:

  • E2E encryption notices
  • Meta service updates
  • Other system-generated notifications
sock.ev.on('messages.upsert', async ({ messages }) => {
    const msg = messages[0];
    if (msg.isSystemNotification) {
        console.log("Filtered system notification");
        return;
    }
    // Process bot commands here
});

📦 Installation

To use this customized local copy in your bot project:

# In your bot's package.json, link directly to this folder:
npm install file:../aura-dct-baileys

👑 Credits & Maintainers

  • Aura DCT Customizations: Built for Aura DCT Bot Development.

Made with 🍃 for Aura DCT