{"id":34616729,"url":"https://github.com/geode-sdk/geode","last_synced_at":"2026-04-13T03:13:23.371Z","repository":{"id":37025747,"uuid":"449738859","full_name":"geode-sdk/geode","owner":"geode-sdk","description":"The ultimate Geometry Dash modding framework","archived":false,"fork":false,"pushed_at":"2026-04-02T22:25:00.000Z","size":310648,"stargazers_count":2148,"open_issues_count":115,"forks_count":402,"subscribers_count":50,"default_branch":"main","last_synced_at":"2026-04-03T01:13:58.572Z","etag":null,"topics":["cpp","cross-platform","geode","geode-sdk","geometry-dash","low-level","mod","modding","modding-framework","modding-library"],"latest_commit_sha":null,"homepage":"https://geode-sdk.org/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/geode-sdk.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","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-01-19T15:05:21.000Z","updated_at":"2026-04-03T00:24:15.000Z","dependencies_parsed_at":"2026-03-07T02:01:36.281Z","dependency_job_id":null,"html_url":"https://github.com/geode-sdk/geode","commit_stats":null,"previous_names":[],"tags_count":153,"template":false,"template_full_name":null,"purl":"pkg:github/geode-sdk/geode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geode-sdk%2Fgeode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geode-sdk%2Fgeode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geode-sdk%2Fgeode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geode-sdk%2Fgeode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/geode-sdk","download_url":"https://codeload.github.com/geode-sdk/geode/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geode-sdk%2Fgeode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31556239,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T10:21:54.569Z","status":"ssl_error","status_checked_at":"2026-04-08T10:21:38.171Z","response_time":54,"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":["cpp","cross-platform","geode","geode-sdk","geometry-dash","low-level","mod","modding","modding-framework","modding-library"],"created_at":"2025-12-24T14:40:07.722Z","updated_at":"2026-04-08T13:00:51.413Z","avatar_url":"https://github.com/geode-sdk.png","language":"C++","readme":"\u003cp align=\"center\"\u003e\n\t\u003cimg src=\"/title.png\" /\u003e\n\t\u003ch3 align=\"center\"\u003e\n\t\t\u003ca href=\"https://geode-sdk.org\"\u003eHome page\u003c/a\u003e\n\t\u003c/h3\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003cb\u003eGeode\u003c/b\u003e is a \u003ca href=\"https://store.steampowered.com/app/322170/Geometry_Dash/\"\u003eGeometry Dash\u003c/a\u003e \u003cb\u003emod loader\u003c/b\u003e and \u003cb\u003emodding SDK\u003c/b\u003e with a modern approach towards mod development.\u003c/p\u003e\n\n## Why Geode?\n\nUnlike previous mod loaders, which merely inject the DLLs and let devs handle the rest, Geode aims to be a more comprehensive project that provides all the tools needed for creating mods in one package.\n\nGeode's goal is to solve **mod incompatibility** - to ensure that mods work together without buttons getting misplaced or hooks mysteriously disappearing.\n\n## \"Hello World!\" Example\n\nHere's a **Hello World** mod in Geode:\n\n```cpp\n#include \u003cGeode/Bindings.hpp\u003e\n#include \u003cGeode/modify/MenuLayer.hpp\u003e\n\nusing namespace geode::prelude;\n\nclass $modify(MenuLayer) {\n\tvoid onMoreGames(CCObject*) {\n\t\tFLAlertLayer::create(\n\t\t\t\"Geode\",\n\t\t\t\"Hello World from my Custom Mod!\",\n\t\t\t\"OK\"\n\t\t)-\u003eshow();\n\t}\n};\n```\n\nThis code modifies what happens when the \"More Games\" button is clicked on the home scene in Geometry Dash, showing a custom popup.\n\n## Documentation\n\nDetailed documentation, tutorials, and installation instructions on using Geode can be found [here](https://docs.geode-sdk.org).\n\nNew to modding GD? Geode's documentation also comes with a handy [tutorial book](https://docs.geode-sdk.org/#/handbook/chap0) that explains all the basics of GD modding!\n\n## Contribution\n\nYou can contribute to Geode by opening a [Pull Request](https://github.com/geode-sdk/geode/pulls)! Please follow the contribution guidelines.\n\n## Questions, help, etc.\n\nIf you have any further questions, need help, or just want to share your love for catgirls, be sure to join [our Discord server](https://discord.gg/9e43WMKzhp)!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeode-sdk%2Fgeode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeode-sdk%2Fgeode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeode-sdk%2Fgeode/lists"}