Whatsapp BOT By Seaavey Team is an open-source WhatsApp bot that automates messages and enhances your chat experience. This project is built for developers who want to create their own WhatsApp automation using simple and efficient code.
- 🤖 Automated message responses
- 📂 Easy-to-use source code
- 🔧 Customizable commands
- 🚀 Fast and lightweight
- 🔒 Secure and reliable
- 📊 Logs and analytics support
- 🔄 Auto-reconnect for stable uptime
-
Clone the repository
git clone https://github.com/seaavey/Whatsapp-BOT cd Whatsapp-BOT
-
Install dependencies
npm install
-
Set up configuration
- change name
configuration.js.example
toconfiguration.js
- fill in the required information
- change name
-
Run the bot
npm start
- Start the bot and scan the QR code using WhatsApp Web.
- Send commands to the bot and receive automated responses.
- Customize the bot by modifying the source code.
- Monitor logs to track bot activity.
// Example usage
export const name = "testing"
export const command = ["test"] // or same as command
export const category = "test"
export const usage = "<prefix>test" // optional
export const desc = "testing" // optional
export const isGroup = false // optional, only group
export const isAdmin = false // optional, only admin
export const isBotAdmin = false // optional, only bot admin
export const isOwner = false // optional, only owner
export async function run(m, { sock }) {
// Your code here
}
import { ExtendedWASocket, Messages } from "../../services/Socket.js" // it's socket interface, why not use wa-socket? because wa-socket is not compatible with this project
export interface Commands {
name: string
command: string[] | string
category: string
usage?: string
desc?: string
isGroup?: boolean
isAdmin?: boolean
isBotAdmin?: boolean
isOwner?: boolean
run: (m: Messages, { sock, store }: { sock: ExtendedWASocket; store: any }) => Promise<void>
}
We welcome contributions! To contribute:
- Fork the repository.
- Create a new branch.
- Make improvements and commit your changes.
- Submit a pull request.
This project is open-source and available under the MIT License.
- Seaavey Team - For development and support
- API Providers - For providing the necessary APIs
- Open-source Contributors - For improving this project
- All Users & Testers - For feedback and suggestions
- Node.js & NPM Community - For providing essential tools
- Contributors - For their valuable contributions
If you find this project useful and want to support us, consider making a donation:
Thank you for your support!
For support or inquiries, reach out to us:
- 🌐 Website
- ✉️ Email: seaavey@gmail.com
- 📢 Follow us on Whatsapp Channel
Made with ❤️ by Seaavey Team