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 🙏

© 2025 – Pkg Stats / Ryan Hefner

baileys-langzpanel

v1.0.2

Published

Modifikasi dari WhatsApp API (Baileys) oleh Whiskeysockets

Readme

baileys-langzpanel

baileys-langzpanel adalah modifikasi dari Baileys, sebuah library WhatsApp Web API berbasis Node.js yang powerful.

Proyek ini cocok untuk:

  • Developer bot WhatsApp
  • Integrator sistem (untuk login via WhatsApp, notifikasi, dll)
  • Belajar reverse engineering WhatsApp Web

Instalasi

Untuk menggunakan baileys-langzpanel, cukup jalankan:

npm install baileys-langzpanel

Atau dengan Yarn:

yarn add baileys-langzpanel


---

Fitur Utama

Support Multi-Device: Kompatibel dengan sistem WhatsApp terbaru (tanpa QR berkala).

Written in TypeScript: Support untuk autocomplete dan type-checking yang lengkap.

Plug-and-play: Cukup install dan mulai coding, cocok untuk pemula.

WAProto dan SignalGroup: Sudah termasuk file protokol dan modul signal.

QR Scanner bawaan: Bisa langsung cetak QR ke terminal.



---

Struktur Direktori

baileys-langzpanel/
├── lib/                   # Hasil compile TypeScript
├── src/                   # Source code utama
├── WAProto/               # File protobuf WhatsApp
├── WASignalGroup/         # Implementasi signal untuk grup
├── Example/               # Contoh penggunaan langsung
├── session.json           # Tempat penyimpanan auth session
├── tsconfig.json          # Konfigurasi TypeScript
├── package.json
└── README.md


---

Contoh Penggunaan

import makeWASocket from 'baileys-langzpanel'
import { useSingleFileAuthState } from 'baileys-langzpanel/lib/Auth'
import Pino from 'pino'

const { state, saveState } = useSingleFileAuthState('./session.json')

const sock = makeWASocket({
  auth: state,
  printQRInTerminal: true,
  logger: Pino({ level: 'silent' }),
})

sock.ev.on('connection.update', (update) => {
  const { connection, lastDisconnect } = update
  if (connection === 'open') {
    console.log('Terhubung ke WhatsApp!')
  } else if (connection === 'close') {
    console.log('Terputus. Mencoba ulang...')
  }
})

sock.ev.on('messages.upsert', async (m) => {
  const msg = m.messages[0]
  if (!msg.message) return
  const sender = msg.key.remoteJid
  const text = msg.message.conversation || msg.message.extendedTextMessage?.text

  if (text === 'ping') {
    await sock.sendMessage(sender, { text: 'pong!' })
  }
})


---

Fitur Tambahan Button Support

baileys-langzpanel menyediakan berbagai jenis tombol interaktif untuk memperkaya pengalaman pengguna bot, di antaranya:

1. CTA Copy Button (cta_copy)

Mengirim tombol yang ketika diklik langsung menyalin teks ke clipboard.

Contoh:

{
  name: "cta_copy",
  buttonParamsJson: JSON.stringify({
    display_text: "Copy Code",
    copy_code: "Ini adalah teks yang disalin"
  })
}


---

2. Hydrated Buttons

Tombol interaktif WhatsApp yang lebih fleksibel, seperti:

URL Button (membuka tautan)

Call Button (langsung menelepon)

Quick Reply Button (mengirim perintah otomatis)


Contoh:

hydratedButtons: [
  { urlButton: { displayText: "Kunjungi Website", url: "https://example.com" } },
  { callButton: { displayText: "Hubungi Kami", phoneNumber: "+62123456789" } },
  { quickReplyButton: { displayText: "Cek Status", id: ".status" } }
]


---

3. Legacy Buttons (Buttons Message)

Tipe tombol klasik dari WhatsApp, maksimal 3 pilihan, cocok untuk flow sederhana.

Contoh:

buttons: [
  { buttonId: ".list", buttonText: { displayText: "Lihat Produk" }, type: 1 },
  { buttonId: ".order", buttonText: { displayText: "Pesan Sekarang" }, type: 1 },
  { buttonId: ".info", buttonText: { displayText: "Informasi" }, type: 1 }
]


---

Dukungan Media

Semua jenis tombol di atas bisa disertai media gambar, baik dari file lokal atau URL:

Contoh upload gambar:

const media = await prepareWAMessageMedia({
  image: { url: './src/media/gambar.jpg' }
}, { upload: sock.waUploadToServer })


---

Metadata Pesan

baileys-langzpanel juga mendukung pengaturan metadata tambahan seperti:

externalAdReply

forwardedNewsletterMessageInfo

businessMessageForwardInfo

contextInfo untuk tag user (mention) atau promosi.



---

Catatan

Pastikan WhatsApp yang digunakan sudah versi terbaru (multi-device).

Perlu Node.js minimal v16.0.0 ke atas untuk performa terbaik.



---

Lisensi

MIT License


---

© 2025 LangzPanel – dibuat oleh Galangxyz