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

yukistage

v1.1.6

Published

YukiStage — Lightweight, highly optimized, and robust fork of Baileys for Yuki AI.

Readme

❄️ YukiStage

🔗 Support & Community


❄️ Deskripsi Proyek

YukiStage adalah hasil "kawin silang resmi" antara @whiskeysockets/baileys dan baileys-mbuilder yang dirancang khusus oleh ZetaGo-Aurum untuk memenuhi kebutuhan performa bot Yuki AI dengan maskot pelayan anime es (kuudere) khas Yuki.

Pustaka ini menggabungkan kekuatan core API komunikasi Baileys terbaru dengan kenyamanan MessageBuilder dengan sistem auto-update untuk membuat Button, Carousel, Native Flow, dan AI Rich Response WhatsApp dalam satu paket tunggal tanpa perlu menginstal dependensi terpisah!


🚀 Fitur Utama & Optimalisasi

  1. Integrasi MessageBuilder Bawaan (Hybrid) & Auto-Update

    • Akses langsung class builder: Button, ButtonV2, Carousel, AIRich, dan Toolkit langsung dari root import yukistage.
    • Dilengkapi sistem Auto-Update & Hot Reload otomatis (melalui Proxy) yang selalu memuat fungsionalitas MessageBuilder versi terbaru dari repositori resmi tanpa perlu mengupdate package secara manual.
    • Pembuatan pesan interaktif, dropdown menu (single_select), carousel multi-kartu, dan respon AI terformat menjadi sangat mudah dengan Fluent Chaining API.
  2. Stabilitas Koneksi Tinggi (Anti-Disconnect)

    • Interval keep-alive/ping dipersingkat menjadi 15 detik (default: 30 detik) untuk mencegah penutupan koneksi TCP secara sepihak oleh tabel NAT firewall VPS/Docker.
    • Durasi timeout koneksi awal diperpanjang hingga 30 detik untuk toleransi jaringan lambat.
  3. Optimasi Pengiriman Pesan Bisnis

    • Penambahan metadata bisnis (biz node) otomatis pada pengiriman interaktif untuk menjamin kesuksesan render tombol tanpa penolakan (silent drop) oleh server WhatsApp pada akun personal.
  4. Performa Ringan & Cepat

    • Pemangkasan berkas .map dan dependensi tidak terpakai.
    • Penanganan media yang dioptimalkan dengan resolusi buffer dan image resizer terintegrasi.

📦 Instalasi

Gunakan npm atau yarn untuk menginstal YukiStage ke dalam proyek Anda:

npm install yukistage

🛠️ Contoh Penggunaan

Menggunakan YukiStage dengan inisialisasi soket dan pembuatan tombol terintegrasi:

import makeWASocket, { DisconnectReason, useMultiFileAuthState, Button, ButtonV2, Toolkit } from 'yukistage';
import log from 'pino';

async function startBot() {
    const { state, saveCreds } = await useMultiFileAuthState('session_yuki');
    
    const client = makeWASocket({
        auth: state,
        logger: log({ level: 'silent' }),
        printQRInTerminal: true,
        connectTimeoutMs: 30000,
        keepAliveIntervalMs: 15000
    });

    client.ev.on('connection.update', (update) => {
        const { connection } = update;
        if (connection === 'open') {
            console.log('YukiStage berhasil terhubung ke WhatsApp!');
        }
    });

    client.ev.on('messages.upsert', async (chatUpdate) => {
        const msg = chatUpdate.messages[0];
        if (!msg.message || msg.key.fromMe) return;

        const jid = msg.key.remoteJid;

        // Contoh Membuat Tombol Interaktif (Native Flow) dengan YukiStage
        const button = new Button(client)
            .setTitle("❄️ Yuki Menu")
            .setBody("Halo Senapi, ada yang bisa Yuki bantu?")
            .setFooter("YukiStage Hybrid Client")
            .addReply("❄️ Menu", "menu_id")
            .addUrl("🌐 GitHub", "https://github.com")
            .addSelection("🔘 Pilihan Lainnya")
            .makeSection("Kategori Utama")
            .makeRow("🎧 Audio", "play_audio", "Putar audio musik", "row_1")
            .makeRow("🎬 Video", "play_video", "Putar video klip", "row_2");

        await button.send(jid);
    });

    client.ev.on('creds.update', saveCreds);
}

startBot();

🎖️ Credits & Penghargaan

Pustaka YukiStage ini menggunakan MessageBuilder sebagai pustaka internal tambahannya. Kredit penuh dan ucapan terima kasih sebesar-besarnya kami haturkan kepada:

  • Nixel (NIXCODE) — Pembuat asli dan pengembang utama pustaka baileys-mbuilder.
  • FongsiDev / FgsiDev — Kontributor pustaka baileys-mbuilder & npm package publisher.
  • Update & Support — Silakan bergabung di WhatsApp Channel MBuilder.
  • Pustaka asli Baileys oleh Rajeh Taher & WhiskeySockets.

📄 License

MIT © ZetaGo-Aurum

Note: The underlying MBuilder library (integrated into this project with auto-update system) is Copyright © 2026 Nixel(Dev) & FgsiDev(Contributor).


Developed and maintained with ❄️ by ZetaGo-Aurum.