{"id":22804235,"url":"https://github.com/focabot/azarasi","last_synced_at":"2025-05-08T22:29:25.345Z","repository":{"id":13950448,"uuid":"75438214","full_name":"FocaBot/Azarasi","owner":"FocaBot","description":"Useful framework to make Discord bots","archived":false,"fork":false,"pushed_at":"2022-07-06T23:35:01.000Z","size":1098,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-16T02:22:41.302Z","etag":null,"topics":["discord","discord-bot"],"latest_commit_sha":null,"homepage":"https://focabot.github.io/Azarasi/","language":"JavaScript","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/FocaBot.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}},"created_at":"2016-12-02T23:11:43.000Z","updated_at":"2019-08-15T00:14:05.000Z","dependencies_parsed_at":"2022-08-07T07:16:01.417Z","dependency_job_id":null,"html_url":"https://github.com/FocaBot/Azarasi","commit_stats":null,"previous_names":["focabot/focabotcore"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FocaBot%2FAzarasi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FocaBot%2FAzarasi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FocaBot%2FAzarasi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FocaBot%2FAzarasi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FocaBot","download_url":"https://codeload.github.com/FocaBot/Azarasi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253157300,"owners_count":21863088,"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":["discord","discord-bot"],"created_at":"2024-12-12T10:07:06.705Z","updated_at":"2025-05-08T22:29:25.315Z","avatar_url":"https://github.com/FocaBot.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Azarasi Framework\n\nA Discord bot framework built on top of [Discord.js](https://discord.js.org/) to make\nbot development easier (formerly called FocaBotCore).\n\n```npm install --save azarasi```\n\nCurrently, it provides:\n\n - A command system with built-in prefix and role checking.\n - A module system with hot-reloading.\n - Basic permission system.\n - Persistent data store (powered by [Gun](http://gun.js.org/))\n - Localization system\n - Configuration system (per-guild).\n - Built-in audio player (requires FFMPEG).\n\n## Example\n\nThis is a simple, single-file bot made using Azarasi:\n\n```javascript\nconst Azarasi = require('azarasi');\n\nconst myBot = new Azarasi({\n  prefix: '-',\n  token: '[Insert token here]',\n});\n\n// The classic \"ping\" command\nmyBot.commands.register('ping', ({ msg }) =\u003e {\n  msg.reply('Pong!');\n});\n\n// Makes the bot repeat something\nmyBot.commands.register('echo', ({ msg, args }) =\u003e {\n  msg.channel.send(args);\n});\n\n// Connect to discord\nmyBot.establishConnection();\n```\n\nFor a more complex example, check out the [example](example/) directory.\n\n## Bots Using Azarasi Framework\n\n  - [FocaBot](https://bots.discord.pw/bots/181986129011146752) [(source code)](https://github.com/FocaBot/FocaBot)\n  - [SelfBot-Base](https://github.com/TheBITLINK/SelfBot-Base) (older version, source only)\n\nIf you want to add your bot to the list, feel free to make a PR or contact me on Discord (TheBITLINK#3141). \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffocabot%2Fazarasi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffocabot%2Fazarasi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffocabot%2Fazarasi/lists"}