Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/serikshaikamalov/whatsapp-bot
A WhatsApp client library for NodeJS that connects through the WhatsApp Web browser app
https://github.com/serikshaikamalov/whatsapp-bot
Last synced: about 1 month ago
JSON representation
A WhatsApp client library for NodeJS that connects through the WhatsApp Web browser app
- Host: GitHub
- URL: https://github.com/serikshaikamalov/whatsapp-bot
- Owner: serikshaikamalov
- Created: 2024-08-25T11:56:49.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-26T05:00:54.000Z (4 months ago)
- Last Synced: 2024-08-26T14:02:34.818Z (4 months ago)
- Language: HTML
- Homepage:
- Size: 26.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
A library for working with Whatsapp: [text](https://wwebjs.dev/)
Useful video: https://www.youtube.com/watch?v=Lu16rqbLuKQRun it on a background service with PM2
```bash
pm2 start main.js
```# Issue with running on Ubuntu
1. Make it similiar to:
```js
const client = new Client({
puppeteer: {
headless: true,
args: ["--no-sandbox"]
},
authStrategy: new LocalAuth({
clientId: "YOUR_CLIENT_ID"
})
});
```