{"id":13410427,"url":"https://github.com/qeled/discordie","last_synced_at":"2025-04-06T14:12:44.653Z","repository":{"id":52467093,"uuid":"43853031","full_name":"qeled/discordie","owner":"qeled","description":"Predictable JavaScript abstractions for Discord API.","archived":false,"fork":false,"pushed_at":"2021-04-27T16:42:34.000Z","size":5808,"stargazers_count":190,"open_issues_count":30,"forks_count":46,"subscribers_count":15,"default_branch":"master","last_synced_at":"2024-08-30T21:21:19.903Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://qeled.github.io/discordie/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qeled.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.md","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":"2015-10-08T00:40:39.000Z","updated_at":"2024-07-09T04:56:39.000Z","dependencies_parsed_at":"2022-09-12T17:00:39.765Z","dependency_job_id":null,"html_url":"https://github.com/qeled/discordie","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qeled%2Fdiscordie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qeled%2Fdiscordie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qeled%2Fdiscordie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qeled%2Fdiscordie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qeled","download_url":"https://codeload.github.com/qeled/discordie/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247492564,"owners_count":20947545,"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":"2024-07-30T20:01:06.819Z","updated_at":"2025-04-06T14:12:44.619Z","avatar_url":"https://github.com/qeled.png","language":"JavaScript","funding_links":[],"categories":["Libraries"],"sub_categories":["Discord","JavaScript"],"readme":"# Discordie\n\n[![npm](https://img.shields.io/npm/dm/discordie.svg)](https://www.npmjs.com/package/discordie)\n\nA Node.js module providing a set of interfaces to interact with Discord API.\n\n[**Documentation**](http://qeled.github.io/discordie/)\n\n**Requires at least Node.js 4.0.0.**\n\n**No native modules required to work with audio. Choose from precompiled (default) or `node-opus` (optional).**\n\nJoin [#node_discordie](https://discord.gg/0SBTUU1wZTYM8nHo) in [Discord API](https://discord.gg/0SBTUU1wZTYM8nHo).\n\n## Fully Implemented\n\n* Messaging\n* Role and channel permission management API\n* Member management API (kicking, banning, etc.)\n* Direct messages\n* Voice encoding, sending, decoding and receiving\n(audio streaming example: [`examples/encoderstream.js`](https://github.com/qeled/discordie/blob/master/examples/encoderstream.js))\n* Guild (server) and channel management API\n* Local user profile (username change, statuses, avatars)\n* Multiserver voice support\n\n## Documentation\n\nhttp://qeled.github.io/discordie/\n\nMirrors inline documentation in files:\n* `lib/interfaces/*.js`\n* `lib/models/*.js`\n* `lib/voice/*.js`\n* `lib/Constants.js`\n* `lib/index.js`\n\n## Example\n\n```js\nvar Discordie = require(\"discordie\");\nvar Events = Discordie.Events;\n\nvar client = new Discordie();\n\nclient.connect({ token: \"\" });\n\nclient.Dispatcher.on(Events.GATEWAY_READY, e =\u003e {\n  console.log(\"Connected as: \" + client.User.username);\n});\n\nclient.Dispatcher.on(Events.MESSAGE_CREATE, e =\u003e {\n  if (e.message.content == \"ping\")\n    e.message.channel.sendMessage(\"pong\");\n});\n```\n\n## Related\n\n### Library comparison: https://discordapi.com/unofficial/comparison.html\n\n**.NET**:\n[RogueException/**Discord.Net**](https://github.com/RogueException/Discord.Net) ||\n[Luigifan/**DiscordSharp**](https://github.com/Luigifan/DiscordSharp) ||\n[robinhood128/**DiscordUnity**](https://github.com/robinhood128/DiscordUnity)\n\n**Node.js**:\n[izy521/**discord.io**](https://github.com/izy521/discord.io) ||\n[hydrabolt/**discord.js**](https://github.com/hydrabolt/discord.js) ||\n[abalabahaha/**eris**](https://github.com/abalabahaha/eris)\n\n**Python**:\n[Rapptz/**discord.py**](https://github.com/Rapptz/discord.py)\n\n**Ruby**:\n[meew0/**discordrb**](https://github.com/meew0/discordrb)\n\n**Go**:\n[bwmarrin/**discordgo**](https://github.com/bwmarrin/discordgo)\n\n**Rust**:\n[SpaceManiac/**discord-rs**](https://github.com/SpaceManiac/discord-rs)\n\n**PHP**:\n[teamreflex/**DiscordPHP**](https://github.com/teamreflex/DiscordPHP) ||\n[Cleanse/**discord-hypertext**](https://github.com/Cleanse/discord-hypertext)\n\n**Java**:\n[austinv11/**Discord4J**](https://github.com/austinv11/Discord4J) ||\n[DV8FromTheWorld/**JDA**](https://github.com/DV8FromTheWorld/JDA/) ||\n[BtoBastian/**Javacord**](https://github.com/BtoBastian/Javacord)\n\n**Lua**:\n[SinisterRectus/**Discordia**](https://github.com/SinisterRectus/Discordia) ||\n[satom99/**litcord**](https://github.com/satom99/litcord)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqeled%2Fdiscordie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqeled%2Fdiscordie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqeled%2Fdiscordie/lists"}