🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

wsweb.js

Package Overview
Dependencies
Maintainers
0
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wsweb.js

Library for interacting with the WhatsApp Web API

latest
Source
npmnpm
Version
1.2.9
Version published
Maintainers
0
Created
Source

whatsapp-web.js

A WhatsApp API client that connects through the WhatsApp Web browser app

[!IMPORTANT] It is not guaranteed you will not be blocked by using this method. WhatsApp does not allow bots or unofficial clients on their platform, so this shouldn't be considered totally safe.

  • GitHub
  • npm

Installation

The module is now available on npm! npm i wsweb.js

[!NOTE] Node v18+ is required.

QUICK STEPS TO UPGRADE NODE

Windows

Manual

Just get the latest LTS from the official node website.

npm

sudo npm install -g n
sudo n stable

Choco

choco install nodejs-lts

Winget

winget install OpenJS.NodeJS.LTS

Ubuntu / Debian

curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - &&\
sudo apt-get install -y nodejs

Example usage

const { Client } = require('wsweb.js');

const client = new Client();

client.on('qr', (qr) => {
    // Generate and scan this code with your phone
    console.log('QR RECEIVED', qr);
});

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

client.on('message', msg => {
    if (msg.body == '!ping') {
        msg.reply('pong');
    }
});

client.initialize();

Take a look at example.js for another examples with additional use cases.
For further details on saving and restoring sessions, explore the provided Authentication Strategies.

Supported features

FeatureStatus
Multi Deviceâś…
Send messagesâś…
Receive messagesâś…
Send media (images/audio/documents)âś…
Send media (video)âś… (requires Google Chrome)
Send stickersâś…
Receive media (images/audio/video/documents)âś…
Send contact cardsâś…
Send locationâś…
Send buttons❌ (DEPRECATED)
Send lists❌ (DEPRECATED)
Receive locationâś…
Message repliesâś…
Join groups by inviteâś…
Get invite for groupâś…
Modify group info (subject, description)âś…
Modify group settings (send messages, edit info)âś…
Add group participantsâś…
Kick group participantsâś…
Promote/demote group participantsâś…
Mention usersâś…
Mention groupsâś…
Mute/unmute chatsâś…
Block/unblock contactsâś…
Get contact infoâś…
Get profile picturesâś…
Set user status messageâś…
React to messagesâś…
Create pollsâś…
Vote in polls🔜
Communities🔜
Channels🔜

Something missing? Make an issue and let us know!

Contributing

Feel free to open pull requests; we welcome contributions! However, for significant changes, it's best to open an issue beforehand. Make sure to review our contribution guidelines before creating a pull request. Before creating your own issue or pull request, always check to see if one already exists!

Disclaimer

This project is not affiliated, associated, authorized, endorsed by, or in any way officially connected with WhatsApp or any of its subsidiaries or its affiliates. The official WhatsApp website can be found at whatsapp.com. "WhatsApp" as well as related names, marks, emblems and images are registered trademarks of their respective owners. Also it is not guaranteed you will not be blocked by using this method. WhatsApp does not allow bots or unofficial clients on their platform, so this shouldn't be considered totally safe.

License

Copyright 2019 subying

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this project except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Keywords

whatsapp

FAQs

Package last updated on 10 Aug 2024

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