Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

waweb-phi

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

waweb-phi

control whatsapp web with nodejs

  • 0.1.22
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-25%
Maintainers
1
Weekly downloads
 
Created
Source

WAWEB-phi

npm NPM GitHub last commit

WAWEB-phi is library for controlling whatsapp web for nodejs, inspired from whatsapp-web.js and WAPI.js

Installation

NPM

npm install waweb-phi 

YARN

yarn add waweb-phi 

Usage

const wa = require('waweb-phi')

const client = new wa({
    puppeteer: { headless: false }, //change it to true if u want hidding the chrome/
    authTimeout: 30000,
   
});


client.initialize();


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

});

client.on('authenticated', (session) => {
    console.log('AUTHENTICATED', session);

});

client.on('auth_failure', msg => {
    console.error('AUTHENTICATION FAILURE', msg);


})

client.on('ready', () => {
    console.log('READY');
        client.sendMessage("628950609xxxx@c.us", `test`).then((r) => {
            console.log("sendMessage",r)
        })

});


client.on('message', async msg => {
    console.log('MESSAGE RECEIVED', msg);

});

client.on('disconnected', () => {

    console.log('Client was logged out');
})


for more detail example, see example.js

Update Changelog

  • 14/07/2021 (v0.1.22) fix Update from wa
  • 26/02/2021 (v0.1.21) fix Update from wa
  • 20/11/2020 (v0.1.20) fix Update from wa
  • 27/03/2020 (v0.1.19) Update puppeter to last version, now headless mode can run on linux cli
  • 27/03/2020 (v0.1.16) Update
  • 06/03/2020 (v0.1.15) add ack status (send,received,read)
  • 19/02/2020 (v0.1.14) Add SendImageToID + fix SendImage + add sendSeen + add deviceInfo
  • 27/01/2020 (v0.1.12 > v0.1.13) add authTimeout option + change default authTimeout value from 5000ms to 10000ms , for detail check example.js
  • 17/01/2020 (v0.1.11) fix selector qr/qrvalue/keep phoneimage update

This code is in no way affiliated with, authorized, maintained, sponsored or endorsed by WhatsApp or any of its affiliates or subsidiaries. This is an independent and unofficial software. Use at your own risk. Commercial use of this code/repo is strictly prohibited.

License

APACHE v2

made with 💗

Keywords

FAQs

Package last updated on 13 Jul 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc