{"id":41328503,"url":"https://github.com/Skillz4Killz/Muslim-Islam-Discord-Bot","last_synced_at":"2026-02-24T23:00:31.795Z","repository":{"id":56569878,"uuid":"159398545","full_name":"Skillz4Killz/Muslim-Islam-Discord-Bot","owner":"Skillz4Killz","description":"An Islamic bot for any muslim!","archived":false,"fork":false,"pushed_at":"2023-08-25T13:48:26.000Z","size":3466,"stargazers_count":12,"open_issues_count":6,"forks_count":6,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-20T19:12:26.832Z","etag":null,"topics":["bot","discord","islam","muslim","quran"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Skillz4Killz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","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,"zenodo":null}},"created_at":"2018-11-27T21:00:04.000Z","updated_at":"2025-08-17T19:07:36.000Z","dependencies_parsed_at":"2025-04-12T13:12:22.893Z","dependency_job_id":"4f8a21bf-47fb-4fe5-94fa-b32800a4a042","html_url":"https://github.com/Skillz4Killz/Muslim-Islam-Discord-Bot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Skillz4Killz/Muslim-Islam-Discord-Bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skillz4Killz%2FMuslim-Islam-Discord-Bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skillz4Killz%2FMuslim-Islam-Discord-Bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skillz4Killz%2FMuslim-Islam-Discord-Bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skillz4Killz%2FMuslim-Islam-Discord-Bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Skillz4Killz","download_url":"https://codeload.github.com/Skillz4Killz/Muslim-Islam-Discord-Bot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skillz4Killz%2FMuslim-Islam-Discord-Bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29804137,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T22:43:48.403Z","status":"ssl_error","status_checked_at":"2026-02-24T22:43:18.536Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["bot","discord","islam","muslim","quran"],"created_at":"2026-01-23T06:11:49.933Z","updated_at":"2026-02-24T23:00:31.785Z","avatar_url":"https://github.com/Skillz4Killz.png","language":"TypeScript","funding_links":[],"categories":["Islamic Resources and Community (52 projects)"],"sub_categories":["TypeScript"],"readme":"# Discordeno Bot Template\n\nThis repo is meant as a template which you can use to create a Discord bot very easily using the [Discordeno library](https://github.com/Skillz4Killz/Discordeno).\n\n[Website/Guide:](https://discordeno.netlify.app/)\n\n[Discord Server](https://discord.gg/J4NqJ72)\n\n## Pre-requisites\n\n- [Deno](https://deno.land)\n\n## Step By Step\n\n1. Create your own repo using the template button. It is next to the button where you get the url to clone. It will say `Use this template` This is a template repo.\n2. Clone your own repo that Github created for you. `git clone url-here-for-your-repo`\n3. Create your `configs.ts` file in the main folder.\n\n```ts\n// Step 1: Remove the `.example` from this file name so it is called `configs.ts`\n// Step 2: Add all your bot's information below. The only required one is token and prefix. NOTE: As long as `.gitignore` file is ignoring configs.ts your configurations will be kept private!\n// Step 3: Remove these comments if you like.\n\nexport const configs = {\n  // Your bot token goes here\n  token: \"\",\n  // The default prefix for your bot. Don't worry guilds can change this later.\n  prefix: \"!\",\n  // This isn't required but you can add bot list api keys here.\n  botListTokens: {\n    DISCORD_BOT_ORG: \"\",\n    BOTS_ON_DISCORD: \"\",\n    DISCORD_BOT_LIST: \"\",\n    BOTS_FOR_DISCORD: \"\",\n    DISCORD_BOATS: \"\",\n    DISCORD_BOTS_GG: \"\",\n    DISCORD_BOTS_GROUP: \"\",\n  },\n  // This is the server id for your bot's main server where users can get help/support\n  supportServerID: \"\",\n  // These are channel ids that will enable some functionality\n  channelIDs: {\n    // When a translation is missing this is the channel you will be alerted in.\n    missingTranslation: \"\",\n    // When an error occurs, we will try and log it to this channel\n    errorChannelID: \"\",\n  },\n  // These are the role ids that will enable some functionality.\n  roleIDs: {\n    // If you have a patreon set up you can add the patreon vip role id here.\n    patreonVIPRoleID: \"\",\n  },\n  // These are the user ids that will enable some functionality.\n  userIDs: {\n    // You can delete the `as string[]` when you add atleast 1 id in them.\n    // The user ids for the support team\n    botSupporters: [] as string[],\n    // The user ids for the other devs on your team\n    botDevs: [] as string[],\n    // The user ids who have complete 100% access to your bot\n    botOwners: [] as string[],\n  },\n};\n```\n\n4. Start the bot `deno run --allow-net --allow-read --quiet mod.ts`\n\n**Note:** To run the bot with [PM2](https://github.com/Unitech/pm2): `pm2 start mod.ts --interpreter=\"deno\" --interpreter-args=\"run --allow-net --allow-read --allow-write --no-check --config tsconfig.json --quiet -r\" `\n\nThe `-r` is short for `--reload`, it reloads your deno cache whenever the bot restarts to get the latest and greatest changes to Discordeno. You don't have to include it.\n\n## Features\n\n## Beginner Developers\n\nDon't worry a lot of developers start out coding their first projects as a Discord bot(I did 😉) and it is not so easy. With Discordeno, I tried to build it in a way that solved all the headaches I had when first starting out coding bots. If you are a beginner developer, please use this boilerplate.\n\n**Modular commands, arguments, events, inhibitors, monitors, tasks.**\n\n- Clean and powerful commands system\n  - Powerful argument handling including validating, parsing and modifications.\n  - Easily create custom arguments for your specific needs.\n  - Command aliases.\n  - Cooldowns and allowed uses before cooldown triggers.\n  - Author and bot permission checks in server AND in channel!\n- Clean and powerful events system\n  - Simple functions that are called when an event occurs.\n  - Easily reloadable!\n  - No possible memory leaks due to incorrect EventEmitter usage!\n  - Useful events available to help debug!\n- Clean and powerful inhibitors system\n  - Stops a command from running if a requirement fails.\n  - Easily add custom inhibitors!\n- Clean and powerful monitors system.\n  - Runs a function on every message sent. Useful for stuff like auto-moderation or tags.\n  - Easily ignore bots, users, edits, dms.\n  - Powerful permission checks.\n- Clean and powerful tasks system.\n  - Runs a function at a certain interval. Useful for things like unmute and updating bot lists etc.\n  - Can be used for cache sweeping to keep your cache optimized for exactly what you want.\n  - Botlists code already made for most botlists. Just add your api tokens for each site and magic!\n- Clean and powerful languages system.\n  - Built in multi-lingual support.\n  - Uses i18next, one of the best localization tools available.\n  - Supports nested folders to keep cleaner translation files\n\n**Hot Reloadable**\n  - Easily update your code without having to restart the bot everytime.\n\n**Step By Step Guide**\n  - There is a step by step walkthrough to learn how to create Discord bots with Discordeno on our website! https://discordeno.netlify.app/stepbystep\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSkillz4Killz%2FMuslim-Islam-Discord-Bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSkillz4Killz%2FMuslim-Islam-Discord-Bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSkillz4Killz%2FMuslim-Islam-Discord-Bot/lists"}