{"id":41404071,"url":"https://github.com/guivictorr/whatsapp-bot","last_synced_at":"2026-01-23T13:18:11.593Z","repository":{"id":45689841,"uuid":"302775151","full_name":"guivictorr/whatsapp-bot","owner":"guivictorr","description":"🤖 File-based Whatsapp Bot","archived":false,"fork":false,"pushed_at":"2024-12-21T20:22:16.000Z","size":373,"stargazers_count":13,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-21T20:29:47.943Z","etag":null,"topics":["automation","bot","hacktoberfest","javascript","nodejs","typescript","whatsapp","whatsapp-bot","whatsapp-web"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/guivictorr.png","metadata":{"files":{"readme":"README-ENG.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-10-09T23:37:48.000Z","updated_at":"2024-12-21T20:22:20.000Z","dependencies_parsed_at":"2023-10-04T05:12:59.124Z","dependency_job_id":"35a5d0a7-0e32-44f2-a778-e59fc3818096","html_url":"https://github.com/guivictorr/whatsapp-bot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/guivictorr/whatsapp-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guivictorr%2Fwhatsapp-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guivictorr%2Fwhatsapp-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guivictorr%2Fwhatsapp-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guivictorr%2Fwhatsapp-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guivictorr","download_url":"https://codeload.github.com/guivictorr/whatsapp-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guivictorr%2Fwhatsapp-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28693279,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T11:01:27.039Z","status":"ssl_error","status_checked_at":"2026-01-23T11:00:26.909Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","bot","hacktoberfest","javascript","nodejs","typescript","whatsapp","whatsapp-bot","whatsapp-web"],"created_at":"2026-01-23T13:18:11.006Z","updated_at":"2026-01-23T13:18:11.560Z","avatar_url":"https://github.com/guivictorr.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align='center'\u003e🤖 Whatsapp Bot\u003c/h1\u003e\n\n\u003cp align='center'\u003eA bot for WhatsApp created using \u003ca href=\"https://github.com/pedroslopez/whatsapp-web.js\"\u003e a library that simulates real-time WhatsApp Web connection.\u003c/a\u003e\u003c/p\u003e\n\n## 👍 Acknowledgments and Credits\n\n- [@pedroslopez](https://github.com/pedroslopez)\n- [@caioagiani](https://github.com/caioagiani)\n\n## 🛠 Technologies\n\nThis project was developed using the following technologies:\n\n- [Whatsapp-web.js](https://github.com/pedroslopez/whatsapp-web.js)\n- [NodeJS](https://nodejs.org/)\n- [Typescript](https://typescriptlang.org/)\n- [qrcode-terminal](https://www.npmjs.com/package/node-base64-image)\n\n## 📱💻 Instructions\n\nAssuming you already have [Node](https://nodejs.org) installed.\n\n```\n## 1. Clone the repository\n\ngit clone https://github.com/guivictorr/whatsapp-bot.git\n\n## 2.  Enter the folder\n\ncd whatsapp-bot\n\n## 3. Install dependencies\n\nnpm i\n\n## 4. Configure the .env file\n\n## 5. Run the application\n\nnpm run dev\n\n## 6. Scan the QR code that appears in the terminal\n```\n\n---\n\n### 🔨 Creating Commands\n\nTo create commands, simply create a `.ts` file in /commands folder\n\nExample:\n\n```ts\nexport default async function commandName(\n  msg: Message,\n  args: string[],\n): Promise\u003cMessage\u003e {\n  // some code\n  return msg.reply('Hello World');\n}\n\nexport default commandName;\n```\n\nOnce the file is created, the command will be functional.\n\n### 📌 Animated Stickers\n\nTo use the !figurinha command with gifs and videos, it is necessary for you to:\n\n1. Download **[FFMPEG](https://ffmpeg.org/)**\n\n2. In the `.env` file, configure the `FFMPEG_PATH` environment variable with the path to ffmpeg\n\n💡 You can try using the `whereis ffmpeg` command to find the path.\n\n---\n\n## 🤔 How to Contribute\n\n- Fork this repository;\n- Create a branch with your feature: `git checkout -b my-feature`;\n- Commit your changes: `git commit -m 'feat: My new feature'`;\n- Push to your branch: `git push origin my-feature`.\n\nOnce your pull request is merged, you can delete your branch.\n\n## ❗ Disclaimer\n\nThis project is not affiliated, associated, authorized, endorsed by,\nor in any way officially connected with WhatsApp or any of its subsidiaries or affiliates. The official WhatsApp website can be found at [https://whatsapp.com](https://whatsapp.com/).\n\"WhatsApp\" as well as names, brands, logos, and related images are registered trademarks of their respective owners.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguivictorr%2Fwhatsapp-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguivictorr%2Fwhatsapp-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguivictorr%2Fwhatsapp-bot/lists"}