{"id":26160691,"url":"https://github.com/mlange-42/ark-serde","last_synced_at":"2025-08-08T04:40:36.081Z","repository":{"id":280136811,"uuid":"941065503","full_name":"mlange-42/ark-serde","owner":"mlange-42","description":"JSON serialization and deserialization for the Ark Entity Component System (ECS).","archived":false,"fork":false,"pushed_at":"2025-03-23T18:19:37.000Z","size":74,"stargazers_count":4,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-01T00:30:06.944Z","etag":null,"topics":["ecs","entity-component-system","json","serde","serde-json"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/mlange-42/ark-serde","language":"Go","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/mlange-42.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,"zenodo":null}},"created_at":"2025-03-01T12:00:11.000Z","updated_at":"2025-03-23T18:18:56.000Z","dependencies_parsed_at":"2025-03-01T14:24:33.637Z","dependency_job_id":"1501db03-0ad3-4382-8e95-754bddfd64cd","html_url":"https://github.com/mlange-42/ark-serde","commit_stats":null,"previous_names":["mlange-42/ark-serde"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/mlange-42/ark-serde","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mlange-42%2Fark-serde","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mlange-42%2Fark-serde/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mlange-42%2Fark-serde/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mlange-42%2Fark-serde/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mlange-42","download_url":"https://codeload.github.com/mlange-42/ark-serde/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mlange-42%2Fark-serde/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269366058,"owners_count":24405236,"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","status":"online","status_checked_at":"2025-08-08T02:00:09.200Z","response_time":72,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["ecs","entity-component-system","json","serde","serde-json"],"created_at":"2025-03-11T12:19:15.089Z","updated_at":"2025-08-08T04:40:35.974Z","avatar_url":"https://github.com/mlange-42.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ark Serde\n\n[![Test status](https://img.shields.io/github/actions/workflow/status/mlange-42/ark-serde/tests.yml?branch=main\u0026label=Tests\u0026logo=github)](https://github.com/mlange-42/ark-serde/actions/workflows/tests.yml)\n[![Coverage Status](https://coveralls.io/repos/github/mlange-42/ark-serde/badge.svg?branch=main)](https://coveralls.io/github/mlange-42/ark-serde?branch=main)\n[![Go Report Card](https://goreportcard.com/badge/github.com/mlange-42/ark-serde)](https://goreportcard.com/report/github.com/mlange-42/ark-serde)\n[![Go Reference](https://pkg.go.dev/badge/github.com/mlange-42/ark-serde.svg)](https://pkg.go.dev/github.com/mlange-42/ark-serde)\n[![GitHub](https://img.shields.io/badge/github-repo-blue?logo=github)](https://github.com/mlange-42/ark-serde)\n[![MIT license](https://img.shields.io/github/license/mlange-42/ark-serde)](https://github.com/mlange-42/ark-serde/blob/main/LICENSE)\n\n*Ark Serde* provides JSON serialization and deserialization for the [Ark](https://github.com/mlange-42/ark) Entity Component System (ECS).\n\n\u003cdiv align=\"center\"\u003e\n\n\u003ca href=\"https://github.com/mlange-42/ark\"\u003e\n\u003cimg src=\"https://github.com/user-attachments/assets/4bbe57c6-2e16-43be-ad5e-0cf26c220f21\" alt=\"Ark (logo)\" width=\"500px\" /\u003e\n\u003c/a\u003e\n\n\u003c/div\u003e\n\n## Features\n\n- Serialize/deserialize an entire Ark world in one line.\n- Proper serialization of entity relations, as well as of entities stored in components.\n- Skip arbitrary components and resources when serializing or deserializing.\n- Optional in-memory GZIP compression for vast reduction of file sizes.\n\n## Installation\n\n```\ngo get github.com/mlange-42/ark-serde\n```\n\n## Usage\n\nSee the [API docs](https://pkg.go.dev/github.com/mlange-42/ark-serde) for more details and examples.  \n[![Go Reference](https://pkg.go.dev/badge/github.com/mlange-42/ark-serde.svg)](https://pkg.go.dev/github.com/mlange-42/ark-serde)\n\nSerialize a world:\n\n```go\njsonData, err := arkserde.Serialize(\u0026world)\nif err != nil {\n    // handle the error\n}\n```\n\nDeserialize a world:\n\n```go\nerr = arkserde.Deserialize(jsonData, \u0026world)\nif err != nil {\n    // handle the error\n}\n```\n\n## License\n\nThis project is distributed under the [MIT licence](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmlange-42%2Fark-serde","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmlange-42%2Fark-serde","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmlange-42%2Fark-serde/lists"}