whatsapp-web-js
Installation
SKILL.md
WhatsApp Web.js
Provides expert guidance for whatsapp-web.js, a library that automates WhatsApp Web by controlling a Chromium browser instance via Puppeteer.
Quick Start
Initialize client with authentication strategy and listen for events:
const { Client, LocalAuth } = require('whatsapp-web.js');
const client = new Client({
authStrategy: new LocalAuth(),
puppeteer: { headless: true }
});
Related skills