1.3.1 • Published 10 months ago

wa-sockets v1.3.1

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Banner

Whatsapp Sockets - Connecting Whatsapp

Connecting Your app with Whatsapp Messaging this Unofficial Repositories

Lightweight library for whatsapp. Not require Selenium or any other browser.

For Informations

that we no longer provide sending type button and list messages because they are no longer available,

please if you want to use these type messages use the Whatsapp Meta API on the business meta page.

Installation

Install package using npm

npm install wa-sockets

Then import your code

Using JS Module

import * as whatsapp from "wa-sockets";

or using CommonJS

const whatsapp = require("wa-sockets");

Session Usage/Examples

Start New Session

// create session with ID : wa-sessions

const session = await whatsapp.startSession("wa-sessions");
// Then, scan QR on terminal

Get All Session ID

const sessions = whatsapp.getAllSession();
// returning all session ID that has been created

Get Session Data By ID

const session = whatsapp.getSession("wa-sessions");
// returning session data

Load Session From Storage / Load Saved Session

whatsapp.loadSessionsFromStorage();
// Start saved session without scan again

Messaging Usage/Examples

Send Text Message

await whatsapp.sendTextMessage({
  sessionId: "mysessionid", // session ID
  to: "62813xxx", // always add country code (ex: 62)
  text: "Hi There, This is Message from Server!", // message you want to send
});

Send Image

const image = fs.readFileSync("./myimage.png");
const send = await whatsapp.sendImage({
  sessionId: "session1",
  to: "62813xxx",
  text: "My Image Caption",
  media: image, // can from URL too
});

Send Video

const video = fs.readFileSync("./myvideo.mp4");
const send = await whatsapp.sendImage({
  sessionId: "session1",
  to: "62813xxx",
  text: "My Video Caption",
  media: video, // can from URL too
});

Send Location

const video = fs.readFileSync("./myvideo.mp4");
const send = await whatsapp.sendImage({
  sessionId: "session1",
  to: "62813xxx",
  longitude: 51.223121,
  latitude: 13.131412,
});

Read a Message

await whatsapp.readMessage({
  sessionId: "session1",
  key: msg.key,
});

Send Typing Effect

await whatsapp.sendTyping({
  sessionId: "session1",
  to: "62813xxx",
  duration: 3000,
});

Listener Usage/Examples

Add Listener/Callback When Receive a Message

whatsapp.onMessageReceived((msg) => {
  console.log(`New Message Received On Session: ${msg.sessionId} >>>`, msg);
});

Add Listener/Callback When QR Printed

whatsapp.onQRUpdated(({ sessionId, qr }) => {
  console.log(qr);
});

Add Listener/Callback When Session Connected

whatsapp.onConnected((sessionId) => {
  console.log("session connected :" + sessionId);
});

Handling Incoming Message Examples

whatsapp.onMessageReceived(async (msg) => {
  if (msg.key.fromMe || msg.key.remoteJid.includes("status")) return;
  await whatsapp.readMessage({
    sessionId: msg.sessionId,
    key: msg.key,
  });
  await whatsapp.sendTyping({
    sessionId: msg.sessionId,
    to: msg.key.remoteJid,
    duration: 3000,
  });
  await whatsapp.sendTextMessage({
    sessionId: msg.sessionId,
    to: msg.key.remoteJid,
    text: "Hello!",
    answering: msg, // for quoting message
  });
});

Save Media Message (Image, Video, Document)

wa.onMessageReceived(async (msg) => {
  if (msg.message?.imageMessage) {
    // save image
    msg.saveImage("./myimage.jpg");
  }

  if (msg.message?.videoMessage) {
    // save video
    msg.saveVideo("./myvideo.mp4");
  }

  if (msg.message?.documentMessage) {
    // save document
    msg.saveDocument("./mydocument"); // without extension
  }
});

Optional Configuration Usage/Examples

Set custom credentials directory

// default dir is "wa_sessions"
whatsapp.setCredentialsDir("my_custom_dir");
// or : credentials/mycreds

Authors

Feedback or Support

If you have any feedback or support, please contact me at kelasweekend.id@gmail.com If there is a code problem please do open issue page of my repository, I will immediately make repairs as soon as possible

copyright 2023

1.3.1

10 months ago

1.3.0

10 months ago

1.1.0

11 months ago

1.0.0

11 months ago