{"id":13438902,"url":"https://github.com/chrismaltby/gb-studio","last_synced_at":"2026-02-13T16:16:15.010Z","repository":{"id":37382144,"uuid":"181894913","full_name":"chrismaltby/gb-studio","owner":"chrismaltby","description":"A quick and easy to use drag and drop retro game creator for your favourite handheld video game system","archived":false,"fork":false,"pushed_at":"2025-05-09T09:54:26.000Z","size":180308,"stargazers_count":8825,"open_issues_count":675,"forks_count":499,"subscribers_count":126,"default_branch":"develop","last_synced_at":"2025-05-12T13:07:54.254Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.gbstudio.dev","language":"TypeScript","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/chrismaltby.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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}},"created_at":"2019-04-17T13:14:32.000Z","updated_at":"2025-05-12T09:11:22.000Z","dependencies_parsed_at":"2022-08-08T20:15:15.493Z","dependency_job_id":"c4693537-8062-4bea-8232-8729a7a7ae45","html_url":"https://github.com/chrismaltby/gb-studio","commit_stats":{"total_commits":5118,"total_committers":67,"mean_commits":76.38805970149254,"dds":0.219030871434154,"last_synced_commit":"89d4c354dfbdcf88fa39702f74216c14cb0e2cbb"},"previous_names":[],"tags_count":45,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrismaltby%2Fgb-studio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrismaltby%2Fgb-studio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrismaltby%2Fgb-studio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrismaltby%2Fgb-studio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chrismaltby","download_url":"https://codeload.github.com/chrismaltby/gb-studio/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253745155,"owners_count":21957317,"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-31T03:01:09.485Z","updated_at":"2026-02-13T16:16:14.998Z","avatar_url":"https://github.com/chrismaltby.png","language":"TypeScript","funding_links":["https://www.patreon.com/gbstudiodev"],"categories":["C","TypeScript","G","游戏","Game Engines"],"sub_categories":["资源传输下载","Specialty"],"readme":"# GB Studio\n\n[![Github Actions Status](https://github.com/chrismaltby/gb-studio/actions/workflows/main.yml/badge.svg?branch=develop)](https://github.com/chrismaltby/gb-studio/actions?query=branch%3Adevelop) [![Storybook](https://img.shields.io/badge/Storybook-FF4785?logo=storybook\u0026logoColor=white)](https://chrismaltby.github.io/gb-studio/storybook) [![Code Coverage](https://img.shields.io/badge/Coverage-blue?logo=jest\u0026logoColor=white)](https://chrismaltby.github.io/gb-studio/coverage)\n\nCopyright (c) 2019-2026 Chris Maltby, released under the [MIT license](https://opensource.org/licenses/MIT).\n\nPatreon: [gbstudiodev](https://www.patreon.com/gbstudiodev)  \nTwitter: [@maltby](https://www.twitter.com/maltby)  \nReddit: [/r/gbstudio](https://www.reddit.com/r/gbstudio)  \nDiscord: [Join Chat](https://discord.gg/bxerKnc)\n\nGB Studio is a quick and easy to use retro adventure game creator for Game Boy available for Mac, Linux and Windows.\nFor more information see the [GB Studio](https://www.gbstudio.dev) site\n\n![GB Studio](gbstudio.gif)\n\nGB Studio consists of an [Electron](https://electronjs.org/) game builder application and a C based game engine using [GBDK](http://gbdk.sourceforge.net/).\n\n## Installation\n\nDownload a release for your operating system from the [GB Studio Downloads](https://www.gbstudio.dev/download) page.\n\nOr to run from source, clone this repo then:\n\n- Install [NodeJS](https://nodejs.org/) (required version is given in [.nvmrc](.nvmrc))\n\n```bash\n\u003e cd gb-studio\n\u003e corepack enable\n\u003e yarn\n\u003e npm run fetch-deps\n\u003e npm start\n```\n\nAfter checking out a new version you may also need to fetch dependencies again to ensure you have the latest version of GBVM + GBDK etc.\n\n```bash\n\u003e cd gb-studio\n\u003e npm run fetch-deps\n```\n\nGB Studio currently uses Node 21.7.1. If you have [NVM](https://github.com/nvm-sh/nvm) installed you can use the included `.nvmrc` to switch to the supported Node version.\n\n```bash\n\u003e cd gb-studio\n\u003e nvm use\n```\n\n## GB Studio CLI\n\nInstall GB Studio from source as above then\n\n```bash\n\u003e npm run make:cli\n\u003e yarn link\n# From any folder you can now run gb-studio-cli\n\u003e $(yarn bin gb-studio-cli) -V\n4.1.2\n\u003e $(yarn bin gb-studio-cli) --help\n```\n\n### Update the CLI\n\nPull the latest code and run make:cli again, yarn link is only needed for the first run.\n\n```bash\n\u003e npm run make:cli\n```\n\n### CLI Examples\n\n- **Export Project**\n\n  ```bash\n  \u003e $(yarn bin gb-studio-cli) export path/to/project.gbsproj out/\n  ```\n\n  Export GBDK project from gbsproj to out directory\n\n- **Export Data**\n  ```bash\n  \u003e $(yarn bin gb-studio-cli) export -d path/to/project.gbsproj out/\n  ```\n  Export only src/data and include/data from gbsproj to out directory\n- **Make ROM**\n\n  ```bash\n  \u003e $(yarn bin gb-studio-cli) make:rom path/to/project.gbsproj out/game.gb\n  ```\n\n  Make a ROM file from gbsproj\n\n- **Make Pocket**\n\n  ```bash\n  \u003e $(yarn bin gb-studio-cli) make:pocket path/to/project.gbsproj out/game.pocket\n  ```\n\n  Make a Pocket file from gbsproj\n\n- **Make Web**\n  ```bash\n  \u003e $(yarn bin gb-studio-cli) make:web path/to/project.gbsproj out/\n  ```\n  Make a Web build from gbsproj\n\n## Documentation\n\n[GB Studio Documentation](https://www.gbstudio.dev/docs)\n\n## Note For Translators\n\nIf you'd like to help contribute new language localisations to GB Studio you can do so by submitting pull requests adding or updating the JSON files found here https://github.com/chrismaltby/gb-studio/tree/develop/src/lang\n\nIf you're looking to update an existing translation with content that is missing, there is a handy script that lists keys found in the English localisation that are not found and copies them to your localisation\n\n```bash\nnpm run missing-translations lang\n# e.g. npm run missing-translations de\n# e.g. npm run missing-translations en-GB\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrismaltby%2Fgb-studio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrismaltby%2Fgb-studio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrismaltby%2Fgb-studio/lists"}