{"id":49308671,"url":"https://github.com/srcimon/screwbox","last_synced_at":"2026-04-26T11:02:47.679Z","repository":{"id":37100314,"uuid":"486053083","full_name":"srcimon/screwbox","owner":"srcimon","description":"ScrewBox is a minimalist pure Java game engine. If you want to start building your own 2D game without leaving your cozy IDE it might be a fun choice.","archived":false,"fork":false,"pushed_at":"2026-04-19T09:38:02.000Z","size":21667,"stargazers_count":18,"open_issues_count":108,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-19T10:28:43.623Z","etag":null,"topics":["2d","game","game-development","game-engine","gamedev","java"],"latest_commit_sha":null,"homepage":"https://screwbox.dev","language":"Java","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/srcimon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-04-27T05:07:15.000Z","updated_at":"2026-04-19T09:38:05.000Z","dependencies_parsed_at":"2026-01-14T22:14:04.647Z","dependency_job_id":null,"html_url":"https://github.com/srcimon/screwbox","commit_stats":null,"previous_names":[],"tags_count":81,"template":false,"template_full_name":null,"purl":"pkg:github/srcimon/screwbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srcimon%2Fscrewbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srcimon%2Fscrewbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srcimon%2Fscrewbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srcimon%2Fscrewbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/srcimon","download_url":"https://codeload.github.com/srcimon/screwbox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srcimon%2Fscrewbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32294591,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T09:34:17.070Z","status":"ssl_error","status_checked_at":"2026-04-26T09:34:00.993Z","response_time":129,"last_error":"SSL_read: 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":["2d","game","game-development","game-engine","gamedev","java"],"created_at":"2026-04-26T11:02:45.488Z","updated_at":"2026-04-26T11:02:47.674Z","avatar_url":"https://github.com/srcimon.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Project Logo](docs/logo.png)\nScrewBox is a minimalist pure Java game engine.\nIf you want to start building your own 2D game without leaving your cozy IDE it might be a fun choice.\n\n[![Maven Central](https://img.shields.io/maven-central/v/dev.screwbox/screwbox)](https://central.sonatype.com/artifact/dev.screwbox/screwbox)\n[![javadoc](https://javadoc.io/badge2/dev.screwbox/screwbox-core/javadoc.svg)](https://javadoc.io/doc/dev.screwbox/screwbox-core)\n[![Build](https://github.com/srcimon/screwbox/actions/workflows/build.yml/badge.svg)](https://github.com/srcimon/screwbox/actions/workflows/build.yml)\n[![Lines of Code](https://sonarcloud.io/api/project_badges/measure?project=srcimon_screwbox\u0026metric=ncloc)](https://sonarcloud.io/summary/new_code?id=srcimon_screwbox)\n[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=srcimon_screwbox\u0026metric=coverage)](https://sonarcloud.io/summary/new_code?id=srcimon_screwbox)\n\n## Introduction\n\nScrewBox uses a purely code based approach on creating games to not force you into using a proprietary content editor.\nAs an open-source project, ScrewBox encourages collaboration and feedback. You can use it as-is, modify it or contribute to its development.\n\n**Learn more about the ScrewBox game engine at [screwbox.dev](https://screwbox.dev).**\n\n\u003cp align=\"center\"\u003e\u003ca href=\"https://screwbox.dev\"\u003e\u003cimg alt=\"youtube trailer\" src=\"docs/static/img/screenshot.png\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n## Getting Started\n\nGetting started with ScrewBox isn't that hard.\nLearn more in this [Getting Started Guide](https://screwbox.dev/docs/fundamentals/getting-started/).\n\n``` java\npublic static void main(String[] args) {\n  Engine screwBox = ScrewBox.createEngine(\"Hello World\");\n\n  screwBox.environment()\n    .enableAllFeatures()\n    .addEntity(new Entity()\n      .add(new CursorAttachmentComponent())\n      .add(new RenderComponent(SpriteBundle.BOX))\n      .add(new TransformComponent()));\n\n  screwBox.start();\n}\n```\n\n## Maven Central\nScrewBox dependencies can be downloaded from [Maven Central](https://central.sonatype.com/artifact/io.github.srcimon/screwbox):\n\n``` xml\n\u003cdependency\u003e\n  \u003cgroupId\u003edev.screwbox\u003c/groupId\u003e\n  \u003cartifactId\u003escrewbox-core\u003c/artifactId\u003e\n  \u003cversion\u003e3.28.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n## Libraries used\n\n- JUnit [Eclipse Public License 2.0](https://github.com/junit-team/junit5/blob/main/LICENSE.md)\n- Jackson [Apache License 2.0](https://github.com/FasterXML/jackson-core/blob/2.14/LICENSE)\n- AssertJ [Apache License 2.0](https://github.com/assertj/assertj-core/blob/main/LICENSE.txt)\n- Mockito [MIT License](https://github.com/mockito/mockito/blob/main/LICENSE)\n- Docusaurus [MIT License](https://github.com/facebook/docusaurus/blob/main/LICENSE)\n- Docusaurus Search Local Plugin [MIT License](https://github.com/easyops-cn/docusaurus-search-local?tab=MIT-1-ov-file#readme)\n\n## Acknowledgments\n\nThe project idea was inspired by Gurkenlabs [Litiengine](https://github.com/gurkenlabs/litiengine).\n\n\u003cp align=\"center\"\u003e\u003cimg alt=\"super hero and cat standing next to each other\" src=\"docs/outro.gif\"\u003e\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrcimon%2Fscrewbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsrcimon%2Fscrewbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrcimon%2Fscrewbox/lists"}