{"id":24087715,"url":"https://github.com/rohandacoder/commandhandler","last_synced_at":"2026-06-10T06:41:10.486Z","repository":{"id":217231878,"uuid":"743344795","full_name":"RohanDaCoder/CommandHandler","owner":"RohanDaCoder","description":"My Command Handler For MCBE","archived":false,"fork":false,"pushed_at":"2024-04-17T03:54:20.000Z","size":30,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-10T03:53:57.399Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/RohanDaCoder.png","metadata":{"files":{"readme":"README.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}},"created_at":"2024-01-15T02:47:49.000Z","updated_at":"2024-02-10T10:38:39.000Z","dependencies_parsed_at":"2024-01-15T06:10:27.075Z","dependency_job_id":"45fb037c-b07f-4632-aba1-9ed0dbe9b863","html_url":"https://github.com/RohanDaCoder/CommandHandler","commit_stats":null,"previous_names":["rohandacoder/commandhandler"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RohanDaCoder%2FCommandHandler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RohanDaCoder%2FCommandHandler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RohanDaCoder%2FCommandHandler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RohanDaCoder%2FCommandHandler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RohanDaCoder","download_url":"https://codeload.github.com/RohanDaCoder/CommandHandler/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240981697,"owners_count":19888369,"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":[],"created_at":"2025-01-10T03:54:12.316Z","updated_at":"2026-06-10T06:41:05.448Z","avatar_url":"https://github.com/RohanDaCoder.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minecraft Bedrock Command Handler\n\nWelcome to the beginner-friendly Minecraft Bedrock Addon Command Handler! This tool simplifies command creation for new addon developers.\n\n## Getting Started\n- Obviously get the files at first...\n### Configuration\n\n- Easily change the command prefix in `config.js`.\n- To enable or disable commands, just add or remove the command's name in `config.js`.\n\n**config.js:**\n```javascript\nexport const config = {\n    prefix: \".\",\n    commands: ['ping', 'help' /* command names here */]\n};\n```\n\n### How To Create a Command?\n![Ping Command](https://raw.githubusercontent.com/RohanDaCoder/CommandHandler/main/assets/pong.png)\n\nFollow These Steps.\n\n1. Open `config.js`.\n2. Add your command name to the `commands` array. \n3. Create a file inside `cmds/` with your command name (e.g., `cmds/ping.js`).\n4. Use This Boilerplate for building a new command:\n\n```javascript\nimport { config } from '../config.js'\nconst command = {\n    name: 'ping', // Command name here\n    description: 'Ping Pong', // Description here\n    usage: `${config.prefix}ping`\n    execute(chat, player, args) {\n        // Command code here\n        player.sendMessage(`Pong!`);\n    }\n};\nexport default command;\n```\n\n### Help Command\n![Help Command](https://raw.githubusercontent.com/RohanDaCoder/CommandHandler/main/assets/help.png)\nWant To Know The best part? It comes with a handy help command no need to create one.\n- To view available commands: `.help`\n- To get help for a specific command: `.help \u003ccommand\u003e`\n\n## Download\n\nDownload the template from [here](https://github.com/RohanDaCoder/CommandHandler/releases/download/Handler/CommandHandler.zip)\n\n## Thanks for Using!\n\nIf you encounter issues or need assistance, feel free to contact me.\n\n- Discord: `rohan_ohio`\n- MCPE: `RohanPlayz1080`\n\nHappy coding!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frohandacoder%2Fcommandhandler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frohandacoder%2Fcommandhandler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frohandacoder%2Fcommandhandler/lists"}