WAWEB-phi is library for controlling whatsapp web for nodejs, inspired from whatsapp-web.js and WAPI.js
NPM
npm install waweb-phi
YARN
yarn add waweb-phi
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');
})
- 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.
made with 💗