{"id":15288001,"url":"https://github.com/iacobson/ecspanse","last_synced_at":"2025-04-15T19:32:09.741Z","repository":{"id":84238562,"uuid":"597751032","full_name":"iacobson/ecspanse","owner":"iacobson","description":"Entity Component System (ECS) library for Elixir, offering a suite of features including: flexible queries with multiple filters, dynamic bidirectional relationships, versatile tagging capabilities, system event subscriptions, or asynchronous system execution.","archived":false,"fork":false,"pushed_at":"2024-09-25T16:58:11.000Z","size":1027,"stargazers_count":70,"open_issues_count":2,"forks_count":7,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-06T13:11:34.042Z","etag":null,"topics":["ecs","elixir"],"latest_commit_sha":null,"homepage":"https://hexdocs.pm/ecspanse","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iacobson.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"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}},"created_at":"2023-02-05T14:35:05.000Z","updated_at":"2025-02-26T11:22:48.000Z","dependencies_parsed_at":"2024-02-09T13:29:23.769Z","dependency_job_id":"39628621-fe36-4529-aee5-4cfb12c949ca","html_url":"https://github.com/iacobson/ecspanse","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iacobson%2Fecspanse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iacobson%2Fecspanse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iacobson%2Fecspanse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iacobson%2Fecspanse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iacobson","download_url":"https://codeload.github.com/iacobson/ecspanse/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249138654,"owners_count":21218921,"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":["ecs","elixir"],"created_at":"2024-09-30T15:43:43.785Z","updated_at":"2025-04-15T19:32:09.689Z","avatar_url":"https://github.com/iacobson.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ecspanse\n\n[![Ecspanse](./guides/images/logo_small.png)](https://hexdocs.pm/ecspanse/tutorial.html)\n[![Hex Version](https://img.shields.io/hexpm/v/ecspanse.svg)](https://hex.pm/packages/ecspanse)\n[![License](https://img.shields.io/hexpm/l/ecspanse.svg)](https://github.com/iacobson/ecspanse/blob/main/LICENSE)\n[![Documentation](https://img.shields.io/badge/documentation-gray)](https://hexdocs.pm/ecspanse)\n\nEcspanse is an Entity Component System (ECS) framework for Elixir.\n\nEcspanse is not a game engine, but a flexible foundation\nfor managing state and building logic offering features like:\n\n- flexible queries with multiple filters\n- dynamic bidirectional relationships\n- versatile tagging capabilities\n- system event subscriptions\n- asynchronous system execution\n\nThe full documentation for the Ecspanse project is available on [HexDocs](https://hexdocs.pm/ecspanse).\n\nEcspanse draws inspiration from the API of [bevy_ecs](https://docs.rs/bevy_ecs/latest/bevy_ecs/). However, while [Bevy](https://bevyengine.org/learn/book/getting-started/ecs/) is a comprehensive game engine, Ecspanse focuses on providing an Entity Component System (ECS) library in Elixir. The concepts described in [the unofficial cheatbook](https://bevy-cheatbook.github.io/programming/ecs-intro.html) also served as valuable references during development.\n\nPlease note that Ecspanse does not claim to be a Bevy equivalent in Elixir. If you're seeking a fully-featured ECS game library, please give [Bevy](https://bevyengine.org/) a try.\n\n## Requirements\n\nOTP-25.0 and above is required to use Ecspanse.\n\n## Installation\n\nRefer to the [Getting Started](https://hexdocs.pm/ecspanse/getting_started.html) guide for installation instructions.\n\n## Getting Started\n\nThe step-by-step [Tutorial](https://hexdocs.pm/ecspanse/tutorial.html) guides you through building a simple game, introducing key features of the framework along the way.\n\n## Demo Projects\n\n### The Ecspanse Demo\n\nThis is the code used in the [Ecspanse Tutorial](https://hexdocs.pm/ecspanse/tutorial.html). You can find it on [GitHub](https://github.com/iacobson/ecspanse_demo).\n\n### I've Seen Things\n\nThis multiplayer game was built with Ecspanse during the library's development. Check out its [GitHub repository](https://github.com/iacobson/iveseenthings). The game is currently hosted on [fly.io](https://fly.io/) and can be played [HERE](https://iveseenthings.fly.dev/).\n\n## To Do\n\n- [ ] Expand testing beyond happy path scenarios.\n- [ ] Improve documentation.\n\n## License\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiacobson%2Fecspanse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiacobson%2Fecspanse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiacobson%2Fecspanse/lists"}