╔════════════════════╗ ║ 🤖 SIMON TECH BOT ║ ╚════════════════════╝
Your intelligent WhatsApp assistant powered by Node.js ⚡
SIMON TECH is a powerful WhatsApp bot assistant built with Node.js that helps automate messages, handle commands, and provide intelligent responses on WhatsApp.
- ✅ WhatsApp message automation
- ✅ Command-based system
- ✅ Real-time message handling
- ✅ Extensible architecture with handlers and utilities
- ✅ Environment-based configuration
- ✅ Easy to customize and deploy
- Node.js v16 or higher
- npm or yarn
- Active WhatsApp account
git clone https://github.com/veriferjp-coder/SIMON-TECH.git
cd SIMON-TECHnpm installcp .env.example .envEdit .env and update the configuration:
BOT_NAME=SIMON TECH
PORT=3000
NODE_ENV=developmentnpm startFor development with auto-reload:
npm run devSIMON-TECH/
├── src/
│ ├── index.js # Main entry point
│ ├── commands/ # Bot commands
│ ├── handlers/ # Message handlers
│ └── utils/ # Utility functions
├── .env.example # Environment template
├── .gitignore # Git ignore rules
├── package.json # Project dependencies
└── README.md # This file
- Run the bot:
npm start- Scan the QR code with WhatsApp on your phone
- Once authenticated, the bot will be online!
Send commands to the bot via WhatsApp:
/help- Show available commands/status- Check bot status/ping- Test bot connectivity
Create a .env file based on .env.example:
| Variable | Description | Default |
|---|---|---|
BOT_NAME |
Name of your bot | SIMON TECH |
PORT |
Server port | 3000 |
NODE_ENV |
Environment (development/production) | development |
WHATSAPP_SESSION_NAME |
WhatsApp session identifier | SIMON_TECH_SESSION |
// src/commands/example.js
module.exports = {
name: 'example',
description: 'Example command',
execute: async (message, args) => {
await message.reply('Hello from SIMON TECH!');
}
};// src/handlers/example.js
module.exports = async (client, message) => {
console.log('New message:', message.body);
};heroku login
heroku create your-app-name
git push heroku mainrailway link
railway upContributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
For issues, questions, or suggestions, please open an Issue.
Made with ❤️ by veriferjp-coder