{"id":21691507,"url":"https://github.com/scientific-dev/guildedeno","last_synced_at":"2026-01-22T18:05:17.982Z","repository":{"id":53194659,"uuid":"353624097","full_name":"scientific-dev/guildedeno","owner":"scientific-dev","description":"Interact with the guilded client api using deno!","archived":false,"fork":false,"pushed_at":"2021-04-01T13:46:31.000Z","size":43,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-09T10:50:51.122Z","etag":null,"topics":["api","deno","guilded"],"latest_commit_sha":null,"homepage":"https://deno.land/x/guildedeno","language":"TypeScript","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/scientific-dev.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}},"created_at":"2021-04-01T08:09:11.000Z","updated_at":"2024-11-30T17:16:56.000Z","dependencies_parsed_at":"2022-09-15T01:13:06.458Z","dependency_job_id":null,"html_url":"https://github.com/scientific-dev/guildedeno","commit_stats":null,"previous_names":["scientific-guy/guildedeno"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/scientific-dev/guildedeno","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-dev%2Fguildedeno","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-dev%2Fguildedeno/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-dev%2Fguildedeno/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-dev%2Fguildedeno/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scientific-dev","download_url":"https://codeload.github.com/scientific-dev/guildedeno/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-dev%2Fguildedeno/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28667881,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T17:07:18.858Z","status":"ssl_error","status_checked_at":"2026-01-22T17:05:02.040Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["api","deno","guilded"],"created_at":"2024-11-25T17:38:53.909Z","updated_at":"2026-01-22T18:05:17.956Z","avatar_url":"https://github.com/scientific-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Guildedeno\n\n[![](https://www.codefactor.io/repository/github/scientific-guy/guildedeno/badge?style=for-the-badge)](https://www.codefactor.io/repository/github/scientific-guy/guildedeno)\n[![](https://img.shields.io/badge/READ-DOCS-orange?style=for-the-badge)](http://doc.deno.land/https/deno.land/x/guildedeno/mod.ts)\n[![](https://img.shields.io/github/v/tag/Scientific-Guy/guildedeno?style=for-the-badge\u0026label=version)](https://deno.land/x/guildedeno)\n\nGuildedeno is a deno wrapper for guilded api! You can view the docs [here](https://doc.deno.land/https/deno.land/x/guildedeno@v1.0.0-beta/mod.ts).\n\n\u003e This package is not yet made completely! Make a pull request to make changes or create an issue for suggestions, bugs, etc!\n\n## Example\n\n```ts\nimport { Client } from \"https://raw.githubusercontent.com/Scientific-Guy/guildedeno/master/mod.ts\";\n\nconst client = new Client({\n    eventHandlers: {\n        ready(){\n            console.log(`Bot is ready!`);\n        },\n        messageCreate(message){\n            if(message.content == '!ping'){\n                message.send(`Ping: ${Date.now() - message.createdAt.getTime()}`);\n            }\n        }\n    },\n    cache: {\n        users: true, // If set, it will cache users\n        teams: true // By default its set to false. Setting it to true is preferred!\n    },\n    ws: {\n        reconnect: true // Setting it to true will reconnect to client if the connection is closed\n    }\n});\n\nclient.login({\n    email: 'Account email',\n    password: 'Account password'\n});\n```\n\n\u003e You can join the [Unofficial Guilded api support server](https://www.guilded.gg/guilded-api?i=6AXLG00A) for more doubts regarding this.\n\n### What can guildedeno do?\n\n- [x] Websocket api\n    - [x] Receive events\n        - messageCreate\n        - messageUpdate\n        - messageDelete\n        - channelSeen\n        - teamSectionSeen\n        - typing\n        - channelCreate (Uses system message)\n        - channelRename (Uses system message)\n    - [ ] Customizable (Partially customizable)\n    - [x] Reconnection (Reconnection only at errors)\n- [x] Get token by username and email\n- [x] Send messages\n- [ ] Edit messages (Not yet made)\n- [x] Delete messages\n- [x] Role management\n- [x] Parse role permissions\n- [x] Fetch teams, users, channels, messages etc\n- [x] Caching (Not fully made)\n    - [x] Cache only on options set\n    - [ ] Cache limit (To be made)\n    - [x] Customized cache collector\n- [x] Request Manager\n    - [ ] Has fetch offset limit \n    - [x] Has ratelimit offset limit\n    - [x] Customizable fetching\n- [x] Error handelling\n    - [x] Seperate errors for the package\n    - [x] Error event\n- [x] Structures\n    - [x] Classful\n    - [x] Customizable (Partially customizable)\n- [x] Sharding\n    - [x] Shard manager\n    - [ ] Guilded client api is not supported for sharding. This features is still kept for future purposes.\n- [ ] Guides (No guide made yet as of the beta stage of the package)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscientific-dev%2Fguildedeno","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscientific-dev%2Fguildedeno","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscientific-dev%2Fguildedeno/lists"}