New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

dibosocket

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

dibosocket

Custom Baileys WhatsApp API

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

✨ DiboSocket.

Custom WhatsApp library built upon Baileys — enhanced, modernized, and elegant ✨

npm version npm downloads

Lihat Repositori GitHub

📌 Overview

DiboSocket is a refined version of the Baileys library with cleaner API usage, exclusive features like album messaging, newsletter controls, and full-size profile uploads — tailored for modern WhatsApp automation needs.

📦 Installation

Via package.json Fork Baileys (NPM)

@whiskeysockets/baileys

"dependencies": {
  "@whiskeysockets/baileys": "npm:dibosocket@latest"
}

@adiwajsing/baileys

"dependencies": {
  "@adiwajshing/baileys": "npm:dibosocket@latest"
}

baileys

"dependencies": {
  "baileys": "npm:dibosocket@latest"
}

Or via terminal

npm install npm:dibosocket@latest

Importing (for those who don't fork another repository)

ESM

import makeWASocket from 'dibosocket'

CJS

const { default: makeWASocket } = require('dibosocket')

🌟 Key Features

CategoryDescription
📢 ChannelsSeamlessly send messages to WhatsApp Channels.
🖱️ ButtonsCreate interactive messages with button options and quick replies.
🖼️ AlbumsSend grouped images or videos as an album (carousel-like format).
👤 LID GroupingHandle group operations using the latest @lid addressing style.
🤖 AI Message StyleAdd a stylized “AI” icon to messages.
📷 HD Profile PicsUpload full-size profile pictures without cropping.
🔐 Pairing CodeGenerate custom alphanumeric pairing codes.
🛠️ Dev ExperienceReduced noise from logs with optimized libsignal printouts.

💡 Use Case Examples

📬 Newsletter Control
// Create a newsletter
await sock.newsletterCreate("DiboSocket");

// Change description
await sock.newsletterUpdateDescription("dibosocket@newsletter", "Fresh updates weekly");

// Send a reaction to a channel message
await sock.newsletterReactMessage("dibosocket@newsletter", "175", "🔥");
📌 Interactive Messaging
const buttons = [
  { buttonId: 'btn1', buttonText: { displayText: 'Click Me' }, type: 1 },
  { buttonId: 'btn2', buttonText: { displayText: 'Visit Site' }, type: 1 }
];

const msg = {
  text: "Choose one:",
  footer: "From DiboSocket with love 💜",   
  buttons,
  headerType: 1
};

await sock.sendMessage(id, msg, { quoted: null });
🖼️ Send Album
const media = [
  { image: { url: "https://example.com/pic1.jpg" } },
  { video: { url: "https://example.com/clip.mp4" } }
];

await sock.sendMessage(id, { album: media, caption: "Memories 💫" }, { quoted: null });
🔐 Pairing with Custom Code
const code = await sock.requestPairingCode("62xxxxxxxxxx", "DIBO01");
console.log("Your Pairing Code:", code);
📊 Poll Creation
const pollMessage = {
  name: "Favorite Color?",
  values: ["Red", "Blue", "Green"],
  selectableCount: 1
};

await sock.sendMessage(id, { poll: pollMessage });
📍 Location Sharing
const locationMessage = {
  degreesLatitude: 37.422,
  degreesLongitude: -122.084,
  name: "Googleplex",
  address: "1600 Amphitheatre Pkwy, Mountain View, CA 94043"
};

await sock.sendMessage(id, { location: locationMessage });
👥 Group Management
// Create group
const group = await sock.groupCreate("My New Group", [number1, number2]);

// Add participants
await sock.groupAdd(group.id, [number3, number4]);

// Change group description
await sock.groupUpdateDescription(group.id, "This is our awesome group!");

Note: Replace id with the actual recipient ID and sock with your WhatsApp socket connection variable.

🐞 Found a Bug?

Please open an issue at [ UNCOMING WEBSITE ] Or contact the maintainer directly via WhatsApp:

WhatsApp

🙏 TQTO (Thanks To)

Terima kasih kepada pihak-pihak yang telah memberikan dukungan, inspirasi, dan kontribusi secara langsung maupun tidak langsung dalam pengembangan proyek ini:

  • Allah SWT
    For all His grace and ease.

  • Parent
    For your continued love, prayers, and support.

  • Nstar-Y / Nstar-bail
    As an initial foundation and reference in the development of this system.

  • Muh. Deni Setiawan (Me)
    The main developer of this project.

[!CAUTION] Built on top of the WhiskeySockets/Baileys project. All original core logic credits go to their team. Kriszz Bails extends it with thoughtful UX and DX improvements.

🙌 Contributors outside the Baileys code

Thanks to the following awesome contributors who help improve this project 💖

Muh. Deni Setiawan
Muh. Deni Setiawan
RexxHayanasi
RexxHayanasi
nstar-y
nstar-y

Keywords

baileys

FAQs

Package last updated on 08 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts