vaibhavpandeyvpz / wapper

Fully-featured Node.js API to deploy instant bots built on WhatsApp Web.

Home Page:https://vaibhavpandey.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wapper

Fully-featured Node.js API to deploy instant bots built on WhatsApp Web. It allows to send text, location, contact, documents or media messages in bulk or listen/respond to incoming messages using HTTP webhooks.

Powered by whatsapp-web.js and built using Koa, Mongo, Redis and PM2.

Development

Firstly, make sure you have Docker, Node.js and Yarn installed on your workstation. Clone or download the project and run below commands to start the development server.

# create a copy of sample .env file
cp .env.example .env

# start required services (e.g., Mongo, Redis etc.)
docker compose up -d

Usage

Endpoints are documented in the included Postman collection i.e., Wapper.postman_collection.json with sample requests.

Deployment

To help quickly configure a VPS server, install all dependencies and set up the project, there are Terraform scripts and Ansible playbooks in deployment folder ready to configure a server on DigitalOcean.

If you are configuring things manually, below is an example pm2 configuration which can be used:

module.exports = {
  apps: [
    {
      name: "server",
      script: "server.js",
      cwd: "<code_location>",
      env: {
        ADMIN_USER: "<secret>",
        ADMIN_PASSWORD: "<very_secret>",
        CHROME_BINARY: "/usr/bin/google-chrome-stable",
        DEBUG: "wapper:*",
        JWT_SECRET: "<secret>",
        MONGO_URL: "mongodb://127.0.0.1:27017",
        MONGO_DATABASE: "wapper",
        NODE_ENV: "production",
        REDIS_URL: "redis://127.0.0.1:6379",
        WWEBJS_AUTH_PATH: "<code_location>/.wwebjs_auth",
        WWEBJS_CACHE_PATH: "<code_location>/.wwebjs_cache",
      },
    },
  ],
};

Save above contents to a ecosystem.config.js (obviously replace values between < and >) file on the server and run below command to start services:

# start the apps
$ pm2 start ecosystem.config.js

# ensure auto restart
$ pm2 save

Disclaimer

Built for research and personal usages only, use at your own risk. This project is not affiliated, associated, authorized or endorsed by WhatsApp or any of its subsidiaries. WhatsApp as well as related names, marks, emblems and images are registered trademarks of their respective owners.

License

Please see LICENSE file.

About

Fully-featured Node.js API to deploy instant bots built on WhatsApp Web.

https://vaibhavpandey.com/

License:Other


Languages

Language:JavaScript 88.4%Language:HCL 10.3%Language:Dockerfile 1.1%Language:Shell 0.1%