Skip to main content
Public
README.md 6.35 KB


WWebJS Website


npm Depfu WhatsApp_Web 2.2346.52 Discord server


About

A WhatsApp API client that operates via the WhatsApp Web browser.

The library launches the WhatsApp Web browser app via Puppeteer, accessing its internal functions and creating a managed instance to reduce the risk of being blocked. This gives the API client nearly all WhatsApp Web features for dynamic use in a Node.js application.

[!IMPORTANT]
It is not guaranteed you will not be blocked by using this method. WhatsApp does not allow bots or unofficial clients on their platform, so this shouldn't be considered totally safe.

Links

  • [GitHub][gitHub]
  • [Guide][guide] ([source][guide-source])
  • [Documentation][documentation] ([source][documentation-source])
  • [Discord Server][discord]
  • [npm][npm]
  • Installation

    The module is available on [npm][npm] via npm i whatsapp-web.js!

    [!NOTE]
    Node `v18` or higher, is required.
    See the [Guide][guide] for quick upgrade instructions.

    Example usage

    JAVASCRIPT
    1
    2
    3
    4
    5
    6
    const { Client } = require('whatsapp-web.js');
    

    const client = new Client();

    client.on('qr', (qr) => { // Generate and scan this code with your phone console.log('QR RECEIVED', qr); });

    client.on('ready', () => { console.log('Client is ready!'); });

    client.on('message', msg => { if (msg.body == '!ping') { msg.reply('pong'); } });

    client.initialize();

    Take a look at [example.js][examples] for another examples with additional use cases. For further details on saving and restoring sessions, explore the provided [Authentication Strategies][auth-strategies].

    Supported features

    | Feature | Status | | ------------- | ------------- | | Multi Device | βœ… | | Send messages | βœ… | | Receive messages | βœ… | | Send media (images/audio/documents) | βœ… | | Send media (video) | βœ… [(requires Google Chrome)][google-chrome] | | Send stickers | βœ… | | Receive media (images/audio/video/documents) | βœ… | | Send contact cards | βœ… | | Send location | βœ… | | Send buttons | ❌ [(DEPRECATED)][deprecated-video] | | Send lists | ❌ [(DEPRECATED)][deprecated-video] | | Receive location | βœ… | | Message replies | βœ… | | Join groups by invite | βœ… | | Get invite for group | βœ… | | Modify group info (subject, description) | βœ… | | Modify group settings (send messages, edit info) | βœ… | | Add group participants | βœ… | | Kick group participants | βœ… | | Promote/demote group participants | βœ… | | Mention users | βœ… | | Mention groups | βœ… | | Mute/unmute chats | βœ… | | Block/unblock contacts | βœ… | | Get contact info | βœ… | | Get profile pictures | βœ… | | Set user status message | βœ… | | React to messages | βœ… | | Create polls | βœ… | | Channels | βœ… | | Vote in polls | πŸ”œ | | Communities | πŸ”œ |

    Something missing? Make an issue and let us know!

    Contributing

    Feel free to open pull requests; we welcome contributions! However, for significant changes, it's best to open an issue beforehand. Make sure to review our [contribution guidelines][contributing] before creating a pull request. Before creating your own issue or pull request, always check to see if one already exists!

    Supporting the project

    You can support the maintainer of this project through the links below

  • [Support via GitHub Sponsors][gitHub-sponsors]
  • [Support via PayPal][support-payPal]
  • [Sign up for DigitalOcean][digitalocean] and get $200 in credit when you sign up (Referral)
  • Disclaimer

    This project is not affiliated, associated, authorized, endorsed by, or in any way officially connected with WhatsApp or any of its subsidiaries or its affiliates. The official WhatsApp website can be found at [whatsapp.com][whatsapp]. "WhatsApp" as well as related names, marks, emblems and images are registered trademarks of their respective owners. Also it is not guaranteed you will not be blocked by using this method. WhatsApp does not allow bots or unofficial clients on their platform, so this shouldn't be considered totally safe.

    License

    Copyright 2019 Pedro S Lopez

    Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.

    Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

    [guide]: https://guide.wwebjs.dev/guide [guide-source]: https://github.com/wwebjs/wwebjs.dev/tree/main [documentation]: https://docs.wwebjs.dev/ [documentation-source]: https://github.com/pedroslopez/whatsapp-web.js/tree/main/docs [discord]: https://discord.gg/H7DqQs4 [gitHub]: https://github.com/pedroslopez/whatsapp-web.js [npm]: https://npmjs.org/package/whatsapp-web.js [nodejs]: https://nodejs.org/en/download/ [examples]: https://github.com/pedroslopez/whatsapp-web.js/blob/master/example.js [auth-strategies]: https://wwebjs.dev/guide/creating-your-bot/authentication.html [google-chrome]: https://wwebjs.dev/guide/creating-your-bot/handling-attachments.html#caveat-for-sending-videos-and-gifs [deprecated-video]: https://www.youtube.com/watch?v=hv1R1rLeVVE [gitHub-sponsors]: https://github.com/sponsors/pedroslopez [support-payPal]: https://www.paypal.me/psla/ [digitalocean]: https://m.do.co/c/73f906a36ed4 [contributing]: https://github.com/pedroslopez/whatsapp-web.js/blob/main/CODE_OF_CONDUCT.md [whatsapp]: https://whatsapp.com

    About

    A JavaScript WhatsApp client library for Node.js that connects through the WhatsApp Web browser interface (via Puppeteer), enabling programmatic message sending, receiving, media handling, group and contact management for bot and automation use cases.


    170 files
    18 folders
    2.11 MB total size
    0 open issues
    0 open pull requests
    0 watchers
    0 forks
    0 stars
    31 views
    Updated 3 days ago
    Languages
    HTML 64.7%
    JavaScript 26.2%
    CSS 3.9%
    TypeScript 3.8%
    YAML 0.6%
    LICENSE 0.5%
    update-version 0.2%
    publish 0.1%
    Shell 0.0%
    CNAME 0.0%