{"id":15554930,"url":"https://github.com/projectdysnomia/dysnomia","last_synced_at":"2026-03-15T04:49:05.712Z","repository":{"id":61259497,"uuid":"549779234","full_name":"projectdysnomia/dysnomia","owner":"projectdysnomia","description":"A fork of Eris, a Discord Node.js library, focused on keeping up with the latest Discord API changes.","archived":false,"fork":false,"pushed_at":"2026-03-08T16:54:06.000Z","size":4700,"stargazers_count":66,"open_issues_count":5,"forks_count":15,"subscribers_count":2,"default_branch":"dev","last_synced_at":"2026-03-08T20:44:32.948Z","etag":null,"topics":["bot","discord","discord-api","dysnomia","nodejs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"abalabahaha/eris","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/projectdysnomia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-10-11T18:13:57.000Z","updated_at":"2026-03-02T21:12:02.000Z","dependencies_parsed_at":"2023-10-15T17:08:40.573Z","dependency_job_id":"1989da99-2967-4c6e-81b9-a7c16a249bb2","html_url":"https://github.com/projectdysnomia/dysnomia","commit_stats":{"total_commits":1469,"total_committers":154,"mean_commits":9.53896103896104,"dds":0.539142273655548,"last_synced_commit":"69c2ec22f835fcea567d248b4b6999b9cb0854dc"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/projectdysnomia/dysnomia","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projectdysnomia%2Fdysnomia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projectdysnomia%2Fdysnomia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projectdysnomia%2Fdysnomia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projectdysnomia%2Fdysnomia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/projectdysnomia","download_url":"https://codeload.github.com/projectdysnomia/dysnomia/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projectdysnomia%2Fdysnomia/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30524657,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-15T00:42:01.247Z","status":"ssl_error","status_checked_at":"2026-03-15T00:42:00.300Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["bot","discord","discord-api","dysnomia","nodejs"],"created_at":"2024-10-02T15:05:00.034Z","updated_at":"2026-03-15T04:49:05.691Z","avatar_url":"https://github.com/projectdysnomia.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Project Dysnomia\n====\n\nA fork of [Eris](https://github.com/abalabahaha/eris), a Node.js wrapper for interfacing with Discord, focused on keeping up with the latest Discord API changes.\n\nInstalling\n----------\n\nYou will need Node.js 18+. Voice support requires [additional software](https://github.com/nodejs/node-gyp#installation).\n\n```\nnpm install --omit=optional @projectdysnomia/dysnomia\n```\n\nIf you'd like to install the development versions of the library, use the following command instead:\n```\nnpm install --omit=optional \"github:projectdysnomia/dysnomia#dev\"\n```\n\nIf you need voice support, remove the `--omit=optional`.\n\nPing Pong Example\n-----------------\n\n```js\nconst Dysnomia = require(\"@projectdysnomia/dysnomia\");\n\n// Replace TOKEN with your bot account's token\nconst bot = new Dysnomia.Client(\"Bot TOKEN\", {\n    gateway: {\n        intents: [\n            \"guildMessages\"\n        ]\n    }\n});\n\nbot.on(\"ready\", () =\u003e { // When the bot is ready\n    console.log(\"Ready!\"); // Log \"Ready!\"\n});\n\nbot.on(\"error\", (err) =\u003e {\n  console.error(err); // or your preferred logger\n});\n\nbot.on(\"messageCreate\", (msg) =\u003e { // When a message is created\n    if(msg.content === \"!ping\") { // If the message content is \"!ping\"\n        bot.createMessage(msg.channel.id, \"Pong!\");\n        // Send a message in the same channel with \"Pong!\"\n    } else if(msg.content === \"!pong\") { // Otherwise, if the message is \"!pong\"\n        bot.createMessage(msg.channel.id, \"Ping!\");\n        // Respond with \"Ping!\"\n    }\n});\n\nbot.connect(); // Get the bot to connect to Discord\n```\n\nMore examples can be found in [the examples folder](examples).\n\nUseful Links\n------------\n\n- [The official Project Dysnomia server](https://discord.gg/2uUvgJzgCE) is the best place to get support.\n- [The GitHub repo](https://github.com/projectdysnomia/dysnomia) is where development primarily happens.\n- [The NPM package webpage](https://npmjs.com/package/@projectdysnomia/dysnomia) is, well, the webpage for the NPM package.\n\nLicense\n-------\n\nRefer to the [LICENSE](LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojectdysnomia%2Fdysnomia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprojectdysnomia%2Fdysnomia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojectdysnomia%2Fdysnomia/lists"}