Skip to content

This package creates embeds and buttons in a very simple way using the whatsapp-web.js module for whatsapp.

License

Notifications You must be signed in to change notification settings

zulfio/wwebjs-sender

 
 

Repository files navigation

This package creates embeds and buttons in a very simple way using the whatsapp-web.js module for whatsapp.

NOTE : Internally whatsapp-web.js is being used to send and receive messages. Though it has been safe as per my testing, I cannot promise that your number will not be blocked by Whatsapp. Also, this project is not affiliated, associated, authorized or endorsed with Whatsapp or any of its subsidiaries or affiliates in any way.


Installation:

Install the package @deathabyss/wwebjs-sender with npm or yarn

npm

npm i @deathabyss/wwebjs-sender

yarn

yarn add @deathabyss/wwebjs-sender


Features:

  • Create embeds in an easy way
  • Create buttons in an easy way
  • Reply to messages with embed
  • Send messages to a number with embeds and buttons at the same time in an easy way

Example usage:

const WwebjsSender = require("@deathabyss/wwebjs-sender");
const { Client } = require("whatsapp-web.js");

const client = new Client();

client.on("qr", (qr) => {
  console.log("QR RECEIVED", qr);
});

client.on("ready", () => {
  console.log("Client is ready!");
});

client.on("message", (msg) => {
  if (msg.body == "!command") {
    const { from } = message;
    let embed = new WwebjsSender.MessageEmbed()
      .setTitle("Title")
      .setDescription(
        "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum."
      )
      .setFooter("Footer")
      .setTimestamp();

    let button1 = new MessageButton().setCustomId("id_1").setLabel("Label");

    let button2 = new MessageButton().setCustomId("id_2").setLabel("Label");

    await send({
      client: client,
      number: from,
      embed: embed,
      button: [button1, button2],
    });
  }
});

client.initialize();

Usage:

MessageEmbed

let embed = new MessageEmbed() //Call the constructor MessageEmbed
  .setTitle("string") //Set a title for the embed [optional]
  .setDescription("string") //Set a description for the embed [required]
  .setFooter("string") //Set a footer for the embed [optional]
  .setTimestamp(); //Set a timestamp for the embed [optional]

MessageButton

let button = new MessageButton() //Call the constructor MessageButton
  .setCustomId("id") //Set a custom id for the button [optional]
  .setLabel("Label"); //Set a label for the button [required]

Reply

reply({
  message: msg, //The message that was received [required]
  embed: embed, //The embed [required]
});

Send

send({
  client: client, //The client of the bot [required]
  number: number, //The number to send the message [required]
  embed: embed, //The embed [required]
  button: [button], //The button/s [optional]
});

Contributing

1 - Fork it (https://github.com/yourname/yourproject/fork)

2 - Create your feature branch (git checkout -b features/thing)

3 - Commit your changes (git commit -am 'feat(image): Add some thing')

4 - Push to the branch (git push origin feature/thing)

5 - Create a new Pull Request


License

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


Contributors


DeathAbyss

💻 🎨 🧪 🤔

About

This package creates embeds and buttons in a very simple way using the whatsapp-web.js module for whatsapp.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%