A Simple WhatsApp bot built with the Baileys library, designed for easy deployment across various platforms.
Deploy your bot on any of these platforms:
-
Heroku
Purpose: Ideal for hosting Node.js applications with easy scaling.
API Key: Create a Heroku account and follow the prompts to generate an API key in your dashboard.
Env Setup: Add your API key & APP NAME to the.env
file asHEROKU_API_KEY="your_api_key"
andHEROKU_APP_NAME="your_app_name"
. -
Koyeb
Purpose: High-performance hosting for Dockerized Node.js apps.
API Key: Sign up for a Koyeb account to access your API key in the dashboard.
Env Setup: Include it in your.env
file asKOYEB_API_KEY="your_api_key"
. -
Render
Purpose: Great for auto-scaling Node.js applications with minimal configuration.
API Key: Create a Render account to generate an API key via your account settings.
Env Setup: Add to.env
asRENDER_API_KEY="your_api_key"
. -
Railway
Purpose: Quick deployment for Node.js apps with a user-friendly interface.
API Key: Register for a Railway account to obtain an API key in your dashboard.
Env Setup: Set it in your.env
asRAILWAY_API_KEY="your_api_key"
. -
Termux
Purpose: Run Node.js apps directly on Android devices.
API Key: No API key needed; simply clone the repository and set up.
Env Setup: Create a.env
file for your bot's session ID and info. -
Panel
Purpose: Web-based interface for managing your Node.js bot.
API Key: No API key required; install directly from releases.
Env Setup: Configure in your.env
as necessary for the bot. -
Codespaces
Purpose: Cloud-based development environment for Node.js applications.
API Key: Not needed; set up your project directly in Codespaces.
Env Setup: Create a.env
file for your bot's configuration. -
Replit
Purpose: Free, browser-based option perfect for beginners with Node.js.
API Key: No API key required; sign up to start a new project.
Env Setup: Use the built-in environment variable management for your bot.
To run the bot locally:
-
Generate a Session ID: Create your
SESSION_ID
here. -
Configure Environment Variables: Create a
.env
file with:SESSION_ID="your_generated_session_id" BOT_INFO="YourName,YourBotName"
-
Launch the Bot: Use Node.js, Docker, or your preferred method.
Need help? Join our WhatsApp support channel.
Quick setup for Termux:
pkg update && pkg upgrade -y
pkg install nodejs ffmpeg git python openssh nano wget -y
git clone https://github.com/FXastro/fxop-md
cd fxop-md
npm install
npm start
Save the following as termux-setup.sh
:
#!/bin/bash
pkg update && pkg upgrade -y
pkg install nodejs ffmpeg git python openssh nano wget -y
git clone https://github.com/FXastro/fxop-md
cd fxop-md
npm install
echo 'SESSION_ID="your_session_id_here"' > .env
echo 'BOT_INFO="your_bot_info_here"' >> .env
npm start
Make it executable and run:
chmod +x termux-setup.sh
./termux-setup.sh
If you encounter errors:
-
Install Android NDK:
pkg install ndk-sysroot
-
Ensure dependencies are installed:
pkg install make gcc python
-
Rebuild SQLite3:
npm rebuild sqlite3
- Always replace placeholder values with your actual data.
- The setup script automates installation and configuration.
- Never share sensitive information like your
SESSION_ID
. - Use the bot at your own risk; it's provided as-is.