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

});


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.sendMessage("62895xxxxxxxx@c.us", `test ${time}`)
    }, 2000);




});

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

});

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

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

Todo

  • SendMessageToID (send message to who not in contact list)
  • Implement all WAPI.js Function
  • event on getBroadcast
  • and more

License

APACHE v2

Keywords

FAQs

Package last updated on 08 Sep 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