{"id":13520547,"url":"https://github.com/AkumaKodo/AkumaKodo","last_synced_at":"2025-03-31T16:31:36.337Z","repository":{"id":38996913,"uuid":"468623763","full_name":"AkumaKodo/AkumaKodo","owner":"AkumaKodo","description":"A blazing fast discord bot framework built on top of discordeno and typescript!","archived":true,"fork":false,"pushed_at":"2022-04-29T17:28:14.000Z","size":7649,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"stable","last_synced_at":"2024-10-16T18:27:53.055Z","etag":null,"topics":["deno","discord","discord-api","discord-deno","discord-framework","framework","typescript"],"latest_commit_sha":null,"homepage":"https://akumakodo.github.io/AkumaKodo/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AkumaKodo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-03-11T05:42:16.000Z","updated_at":"2024-01-04T15:42:19.000Z","dependencies_parsed_at":"2022-09-26T20:41:37.893Z","dependency_job_id":null,"html_url":"https://github.com/AkumaKodo/AkumaKodo","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AkumaKodo%2FAkumaKodo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AkumaKodo%2FAkumaKodo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AkumaKodo%2FAkumaKodo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AkumaKodo%2FAkumaKodo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AkumaKodo","download_url":"https://codeload.github.com/AkumaKodo/AkumaKodo/tar.gz/refs/heads/stable","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":222670691,"owners_count":17020513,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["deno","discord","discord-api","discord-deno","discord-framework","framework","typescript"],"created_at":"2024-08-01T05:02:23.674Z","updated_at":"2024-11-02T03:31:44.732Z","avatar_url":"https://github.com/AkumaKodo.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# AkumaKodo\n\nA blazing fast discord bot framework built on top of [discordeno](https://github.com/discordeno/discordeno) and [typescript](https://www.typescriptlang.org/)!\n\n## Installation\n\n[Click me](https://akumakodo.github.io/AkumaKodo/index.html#installation)\n\n## Example bot\n\n```ts\nimport { AkumaKodoBotCore } from \"https://deno.land/x/akumakodo@0.1.6/mod.ts\";\nimport { config as dotEnvConfig } from \"https://deno.land/x/dotenv@v3.1.0/mod.ts\";\n\nconst env = dotEnvConfig({ export: true });\nconst TOKEN = env.DISCORD_BOT_TOKEN || \"\";\n\n// Bot configuration\nconst Bot = new AkumaKodoBotCore(\n    {\n        botId: BigInt(\"your-bot-id\"),\n        events: {},\n        intents: [\"Guilds\", \"GuildMessages\", \"GuildMembers\"],\n        token: TOKEN,\n    },\n    {\n        optional: {\n            // False by default but we recommend using the built\n            // in logging system until your app hits production.\n            bot_debug_mode: true,\n            // Enables the built in events in the framework\n            bot_internal_events: {\n                // Allows the bot to reply to slash commands\n                interactionCreate: true,\n            },\n        },\n        required: {\n            // needed if you wish to use test slash commands.\n            bot_development_server_id: BigInt(\"your-guild-id\"),\n        },\n    },\n);\n\n// Our own custom event handler\nBot.client.events.ready = (_, payload) =\u003e {\n    Bot.container.logger.log(\"info\", \"ready\", \"Online and ready to work!\");\n};\n\n// Creates a command\nBot.container.utils.createCommand(Bot, {\n    trigger: \"ping\",\n    description: \"ping pong\",\n    scope: \"Development\",\n    run: async (interaction) =\u003e {\n        await Bot.container.utils.createCommandReply(\n            Bot,\n            interaction,\n            {\n                embeds: [\n                    Bot.container.utils.embed().setColor(\"random\")\n                        .setDescription(\"pong!\"),\n                ],\n            },\n            false,\n        );\n    },\n});\n\n// Creates ws connection and starts listening\nawait Bot.createBot();\n```\n\n## Read the [documentation](https://akumakodo.github.io/AkumaKodo/) here!\n\n### Change Log\n\nThe current can be found [here](https://akumakodo.github.io/AkumaKodo/misc/changelog.html)\n\nJoin my discord [@link](https://discord.com/invite/N79DZsm3m2) for support and feedback!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAkumaKodo%2FAkumaKodo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FAkumaKodo%2FAkumaKodo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAkumaKodo%2FAkumaKodo/lists"}