Bu proje, Discord sunucunuzdaki belirli bir kanala otomatik olarak hata mesajları göndermenizi sağlayan bir bot geliştirmek için oluşturulmuştur. Kodlarınızda bir hata oluştuğunda, bu bot hatayı yakalar ve Discord kanalınıza bildirir. Bu sayede hataları hızlı bir şekilde tespit edip çözebilirsiniz.
- Kod bloglarında veya projelerde oluşan hataları otomatik olarak belirlenen bir Discord kanalına gönderir.
- Hata mesajlarını gerçek zamanlı olarak bildirir.
- Minimal kurulum ve kullanıcı dostu yapılandırma sunar.
Projenin çalışması için aşağıdaki araçlara ve kütüphanelere ihtiyaç vardır:
- Node.js (v14 veya üstü)
- Aşağıdaki npm paketleri:
- discord.js
- chalk
- wio.db
- http
- express
Projeyi çalıştırmak için aşağıdaki adımları takip edebilirsiniz:
- Projeyi klonlayın: git clone (https://github.com/devshadow1/web2-discord-post.git) cd web2-discord-post
- Bağımlılıkları yükleyin: npm install
- Discord Bot Token'ı ve Kanal ID'sini yapılandırın: config.json dosyasını düzenleyin: { "token": "BOT_TOKENİNİZ", "channelId": "KANAL_IDNİZ" // mesajın gönderileceği sunucu kanalı }
- Botu çalıştırın: node index.js
- Projeyi çalıştırdıktan sonra, gerekli gördüğünüz yere kodu yerleştirdiğinizde bot hata mesajlarını Discord kanalınıza göndermeye başlayacaktır.
- Gönderilen mesaj örneği: 🔴 [HATA]: TypeError: Cannot read property 'x' of undefined
- Hata detayları ve oluştuğu zaman hakkında bilgiler mesajda yer alır.
Herhangi bir sorunla karşılaşırsanız, aşağıdaki kanallardan benimle iletişime geçebilirsiniz: Instagram: @c3n4p
Bu proje MIT Lisansı ile lisanslanmıştır.
This project is designed to develop a bot that automatically sends error messages to a specific channel on your Discord server. When an error occurs in your code, this bot captures it and notifies your Discord channel. This helps you quickly identify and resolve issues.
- Automatically sends errors from code blocks or projects to a designated Discord channel.
- Real-time error reporting.
- Minimal setup with a user-friendly configuration.
The following tools and libraries are required for the project to work:
- Node.js (v14 or higher)
- The following npm packages:
- discord.js
- chalk
- wio.db
- http
- express
Follow the steps below to run the project:
- Clone the project: git clone https://github.com/devshadow1/web2-discord-post.git cd web2-discord-post
- Install dependencies: npm install
- Configure your Discord Bot Token and Channel ID: Edit the config.json file: { "token": "YOUR_BOT_TOKEN", "channelId": "YOUR_CHANNEL_ID" // The server channel where the message will be sent }
- Start the bot: node index.js
- After running the project, place the necessary code snippet where required, and the bot will start sending error messages to your Discord channel.
- Example of a sent message: 🔴 [ERROR]: TypeError: Cannot read property 'x' of undefined
- The message includes details about the error and when it occurred.
If you encounter any issues, feel free to contact me through the following channels: Instagram: @c3n4p
This project is licensed under the MIT License.