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

@zetagoaurum-socket/wasocket

v3.2.7

Published

WhatsApp API Modification ZetaGo

Readme

ZetaGo-Aurum WaSocket

ZetaGo-Aurum Version License

The Ultimate WhatsApp Socket Connection Library Premium. Secure. Stylish. Meta Verified.

FeaturesInstallationUsageSafety


🌟 Introduction

ZetaGo-Aurum WaSocket is a high-performance, modified version of the Baileys library, engineered for stability, security, and human-like behavior. featuring Meta Verified mimicry, Stylish Console, and Auto-Follow support.

🚀 Key Features

💎 Exclusive Features

  • Meta Verified Fake: Automatically injects "Enterprise" and "Verified" attributes into messages, making your bot look like a verified business.
  • Persistent Auto-Follow: Built-in script that keeps your bot subscribed to developer channels (Credits support).
  • Stylish TUI: Beautiful colored console output with ASCII art and clear error logs (ANTI-KILL).
  • Auto-Update: Checks for the latest version on startup.

🚀 Key Features

🛡️ Unmatched Security (Anti-Ban)

  • Browser Masquerading: Identifies as a legitimate Chrome browser on Windows (Windows, Chrome, 22.0.0.0) instead of a generic bot signature.
  • Traffic Jitter: Implemented randomized timing for "keep-alive" pings (1-6s jitter) to disrupt robotic traffic pattern analysis.
  • Human Latency: Increased default timeouts (connectTimeoutMs: 60s) to mimic human network behavior.
  • Trust Score: Enabled syncFullHistory and generateHighQualityLinkPreview to behave more like a legitimate "Companion" device.

🔗 Robust Custom Pairing

  • Universal Compatibility: Custom pairing code input is now auto-sanitized (removes non-alphanumeric chars) and normalized.
  • Flexibility: Works seamlessly with any pairing number or custom key format.

🤖 AI-Enhanced Humanization

  • Smart Jitter: Every packet is sent with micro-randomized delays to mimic human interaction.
  • Clean Fingerprint: Removed all legacy tracking codes and "bot" markers.

Professional Performance

  • Anti-Crash Architecture: Global error handlers prevent the process from dying.
  • High Stability: Optimized for long-running sessions with automatic reconnection logic.

📦 Installation

Install the package directly from your project:

npm install @zetagoaurum-socket/wasocket
# or install directly from GitHub (Recommended if NPM fails)
npm install github:ZetaGo-Aurum/baileys-V1
# or
yarn add github:ZetaGo-Aurum/baileys-V1
# or
yarn add @zetagoaurum-socket/zetago-aurum-socket

🛠️ Usage

Simply import makeWASocket exactly as you would with standard Baileys. The enhancements work automagically in the background.

const { default: makeWASocket, useMultiFileAuthState } = require('@zetagoaurum-socket/zetago-aurum-socket');

async function connectToWhatsApp() {
    const { state, saveCreds } = await useMultiFileAuthState('auth_info_baileys');

    const sock = makeWASocket({
        auth: state,
        printQRInTerminal: !usePairingCode, // Set to false if using pairing code
        // Browser masquerading is handled automatically!
    });

    if (usePairingCode && !sock.authState.creds.registered) {
        // Pairing code is now robust and handles formatting automatically!
        const code = await sock.requestPairingCode('6281234567890');
        console.log(`Pairing code: ${code}`);
    }

    sock.ev.on('creds.update', saveCreds);

    sock.ev.on('connection.update', (update) => {
        const { connection, lastDisconnect } = update;
        if(connection === 'close') {
            const shouldReconnect = lastDisconnect.error?.output?.statusCode !== DisconnectReason.loggedOut;
            console.log('connection closed due to ', lastDisconnect.error, ', reconnecting ', shouldReconnect);
            if(shouldReconnect) {
                connectToWhatsApp();
            }
        } else if(connection === 'open') {
            console.log('opened connection');
        }
    });
}

connectToWhatsApp();

🛡️ Safety & Anti-Ban Details

We take account safety seriously. ZetaGo-Aurum-Socket implements:

  1. Packet Inspection Prevention: Headers are normalized to look like official clients.
  2. Rate Limiting: Built-in delays prevent you from sending messages too fast (the #1 cause of bans).
  3. Clean Dependencies: We removed all dubious "peer dependencies" that were present in previous forks.

📜 License

This project is licensed under the MIT License - see the LICENSE file for details.