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.7
  • 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

What is the difference? This library uses wapi.js which contains features such as sending pictures, sending to numbers that are not in the contact list and many more

Installation

NPM

npm install waweb-phi 

YARN

yarn add waweb-phi 

Usage

const wa = require('waweb-phi')

const client = new wa({
    puppeteer: { headless: false }

});


client.initialize();

Example

const wa = require('waweb-phi')

const client = new wa({
    puppeteer: { headless: false }

});


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');




    setTimeout(() => {
        console.log("Send Message");

        var today = new Date();
        var time = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds();
        client.sendMessageToID("6289506096398@c.us", `test ${time}`).then((r) => { //send to people who not already in chat or not listed on your contact
            console.log("sendMessageToID",r)
        })
        client.sendMessage("6289506096398@c.us", `test ${time}`).then((r) => {  
            console.log("sendMessage",r)
        })
        client.getBatteryLevel().then((r) => {
            console.log("getBatteryLevel", r)
        }) 
    }, 2000);




});

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

});

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

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

Todo

  • add checkNumberStatus
  • SendMessageToID (send message to who not in contact list)
  • sendMessage and sendMessageToID Return Promise (Succes or not)
  • event on getBroadcast (this things is already embeded on event On Message")
  • getBatteryLevel (this things is already embeded on event On Message")
  • Implement all WAPI.js Function
  • and more

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 31 Oct 2019

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