{"id":24801570,"url":"https://github.com/kibotrel/discordbox","last_synced_at":"2026-03-05T10:32:02.364Z","repository":{"id":208003742,"uuid":"667553644","full_name":"kibotrel/DiscordBox","owner":"kibotrel","description":"Framework to build Discord bot with. Handles the boring stuff so that you can focus on what makes your bot unique.","archived":false,"fork":false,"pushed_at":"2025-05-23T12:59:20.000Z","size":1132,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-23T19:36:00.912Z","etag":null,"topics":["discord","discord-bot","discord-js","framework","typescript"],"latest_commit_sha":null,"homepage":"https://docs.discordbox.app/","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/kibotrel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2023-07-17T19:16:30.000Z","updated_at":"2025-03-10T09:59:03.000Z","dependencies_parsed_at":"2023-11-19T03:19:19.645Z","dependency_job_id":"dcb6db2f-fcff-4a09-8d2b-49ce734f8a1a","html_url":"https://github.com/kibotrel/DiscordBox","commit_stats":null,"previous_names":["kibotrel/discordbox"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/kibotrel/DiscordBox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kibotrel%2FDiscordBox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kibotrel%2FDiscordBox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kibotrel%2FDiscordBox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kibotrel%2FDiscordBox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kibotrel","download_url":"https://codeload.github.com/kibotrel/DiscordBox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kibotrel%2FDiscordBox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30119427,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T09:35:22.236Z","status":"ssl_error","status_checked_at":"2026-03-05T09:35:20.028Z","response_time":93,"last_error":"SSL_read: 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":["discord","discord-bot","discord-js","framework","typescript"],"created_at":"2025-01-30T04:29:17.880Z","updated_at":"2026-03-05T10:32:02.342Z","avatar_url":"https://github.com/kibotrel.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://docs.discordbox.dev/logo.svg\" alt=\"DiscordBox logo\" width=\"256\" height=\"256\"\u003e\n  \u003ch1 align=\"center\"\u003eDiscordBox\u003c/h1\u003e\n  \u003cp align=\"center\"\u003eA Discord Bot framework built on top of \u003ca href=\"https://discord.js.org/\"\u003ediscord.js\u003c/a\u003e that allows you to focus on what makes your bot unique.\u003c/p\u003e\n\n[![npm](https://img.shields.io/npm/v/discordbox)](https://www.npmjs.com/package/discordbox)\n[![CodeFactor](https://www.codefactor.io/repository/github/kibotrel/discordbox/badge?s=1459584c7b64ad6f067146acc6cf10108516a45f)](https://www.codefactor.io/repository/github/kibotrel/discordbox)\n![GitHub License](https://img.shields.io/github/license/kibotrel/DiscordBox)\n\n\u003c/div\u003e\n\n## 📦 Install\n\n```sh\nnpm install discordbox\n```\n\n## 🚀 Getting started\n\nThe following example shows how to create and start a bot that registers a slash command called `ping` that replies with `Pong!` when used.\n\n```js\nimport { SlashCommandBuilder } from 'discord.js'\nimport { DiscordBot } from 'discordbox'\n\nconst bot = new DiscordBot({\n  token: 'xxxxxxxxxxxxxxxxxx',\n  guildId: 'xxxxxxxxxxxxxxxxxx',\n  clientId: 'xxxxxxxxxxxxxxxxxx',\n  supportUserId: 'xxxxxxxxxxxxxxxxxx',\n})\n\nconst ping = {\n  action: new SlashCommandBuilder()\n    .setName('ping')\n    .setDescription('sends Pong!'),\n\n  callback: async (interaction) =\u003e {\n    await interaction.reply({ content: 'Pong!', ephemeral: true })\n  },\n}\n\nbot.addGenericInteractions([ping])\n\nawait bot.start()\n```\n\n## 📖 Documentation\n\nYou can find the full documentation on [docs.discordbox.dev](https://docs.discordbox.dev).\n\n## ✨ Contributing\n\nContributions are welcome, feel free to open an issue or submit a pull request.\n\n## 🔑 License\n\nThis project is licensed under the Apache-2.0 License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkibotrel%2Fdiscordbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkibotrel%2Fdiscordbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkibotrel%2Fdiscordbox/lists"}