{"id":20356727,"url":"https://github.com/aoijs/website","last_synced_at":"2026-03-17T23:05:59.816Z","repository":{"id":209212519,"uuid":"363791236","full_name":"aoijs/website","owner":"aoijs","description":"Official documentation website of aoi.js","archived":false,"fork":false,"pushed_at":"2025-12-02T03:40:18.000Z","size":799674,"stargazers_count":6,"open_issues_count":2,"forks_count":30,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-13T09:54:27.954Z","etag":null,"topics":["aoi","aoi-js","docs","documentation"],"latest_commit_sha":null,"homepage":"http://aoi.js.org/","language":"MDX","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/aoijs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/contributing-example.md","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":"2021-05-03T01:49:10.000Z","updated_at":"2025-08-26T18:36:12.000Z","dependencies_parsed_at":"2023-12-27T05:29:17.460Z","dependency_job_id":"318cc383-44c6-4062-8dea-73881e484404","html_url":"https://github.com/aoijs/website","commit_stats":null,"previous_names":["aoijs/website"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aoijs/website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aoijs%2Fwebsite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aoijs%2Fwebsite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aoijs%2Fwebsite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aoijs%2Fwebsite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aoijs","download_url":"https://codeload.github.com/aoijs/website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aoijs%2Fwebsite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30635156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T22:38:22.569Z","status":"ssl_error","status_checked_at":"2026-03-17T22:38:11.804Z","response_time":56,"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":["aoi","aoi-js","docs","documentation"],"created_at":"2024-11-14T23:17:40.672Z","updated_at":"2026-03-17T23:05:59.772Z","avatar_url":"https://github.com/aoijs.png","language":"MDX","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cbr/\u003e\n\n\u003cdiv align=\"center\" style=\"margin: 30px;\"\u003e\n\u003ca href=\"https://aoi.js.org/\"\u003e\n  \u003cimg src=\"https://github.com/aoijs/website/blob/master/assets/images/aoijs-banner.png?raw=true\"   style=\"width:350px;\" align=\"center\"  alt=\"aoi.js\"/\u003e\n\u003c/a\u003e\n\u003cbr /\u003e\n\u003cbr /\u003e\n\n\u003cdiv align=\"center\"\u003e\u003cstrong\u003eaoi.js Official Documentation\u003c/strong\u003e\u003cbr /\u003e\n\u003cdiv align=\"center\"\u003e\n    \u003ca href=\"https://aoi.js.org/invite\"\u003eDiscord\u003c/a\u003e |\n    \u003ca href=\"https://aoi.js.org/\"\u003eDocumentation\u003c/a\u003e \u003cbr /\u003e \u003cbr /\u003e\n\u003c/div\u003e\n\u003c/div\u003e\n\u003cbr /\u003e\n\u003c/div\u003e\n\n## ❓ What is aoi.js?\n\naoi.js is a JavaScript library that is designed to make it easy to build Discord bots. It is open-source and free to\nuse, and provides a simple, easy-to-use interface for interacting with the Discord API and handling events. aoi.js is\nsuitable for beginners who are new to building bots, as well as experienced developers who want to save time and\nstreamline their workflow.\n\n## 🚀 Setup\n\n```javascript\nconst { AoiClient } = require(\"aoi.js\");\n\nconst client = new AoiClient({\n    token: \"Discord Bot Token\",\n    prefix: \"Discord Bot Prefix\",\n    intents: [\"MessageContent\", \"Guilds\", \"GuildMessages\"],\n    events: [\"onMessage\", \"onInteractionCreate\"],\n    database: {\n        type: \"aoi.db\",\n        db: require(\"@aoijs/aoi.db\"),\n        dbType: \"KeyValue\",\n        tables: [\"main\"],\n        securityKey: \"a-32-characters-long-string-here\"\n    }\n});\n\n// Ping Command\nclient.command({\n  name: \"ping\",\n  code: `Pong! $pingms`\n});\n```\n\n### Interaction Command Setup\n\n```javascript\nconst { AoiClient } = require(\"aoi.js\");\n\nconst client = new AoiClient({\n    token: \"Discord Bot Token\",\n    prefix: \"Discord Bot Prefix\",\n    intents: [\"MessageContent\", \"Guilds\", \"GuildMessages\"],\n    events: [\"onMessage\", \"onInteractionCreate\"],\n    database: {\n        type: \"aoi.db\",\n        db: require(\"@aoijs/aoi.db\"),\n        dbType: \"KeyValue\",\n        tables: [\"main\"],\n        securityKey: \"a-32-characters-long-string-here\"\n    }\n});\n\n// Create Interaction Ping Command\nclient.command({\n  name: \"create\",\n  code: `$createApplicationCommand[$guildID;ping;Pong!;true;true;slash]`\n});\n```\n\n## 🐛 Contribution\n\n[Refer to contribution documentation for more information](https://github.com/aoijs/aoi.js/blob/v6/.github/CONTRIBUTING.md)\n\n### 🧑‍💻 Aoi.js\n\n[![aoijs/aoi.js](https://contrib.rocks/image?repo=aoijs/aoi.js)](https://github.com/aoijs/aoi.js)\n\n### 📄 Documentation\n\n[![aoijs/website](https://contrib.rocks/image?repo=aoijs/website)](https://github.com/aoijs/website)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faoijs%2Fwebsite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faoijs%2Fwebsite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faoijs%2Fwebsite/lists"}