{"id":16014057,"url":"https://github.com/devmattrick/enbeet","last_synced_at":"2026-05-02T04:37:16.197Z","repository":{"id":75983790,"uuid":"379099213","full_name":"devmattrick/enbeet","owner":"devmattrick","description":"A modern Minecraft NBT library.","archived":false,"fork":false,"pushed_at":"2021-06-23T23:59:54.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-10T11:11:16.894Z","etag":null,"topics":["deserialization","enbeet","game","hacktoberfest","java","library","maven","minecraft","nbt","serialization"],"latest_commit_sha":null,"homepage":"","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/devmattrick.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2021-06-22T00:40:23.000Z","updated_at":"2021-10-13T01:42:29.000Z","dependencies_parsed_at":null,"dependency_job_id":"c1fc56a8-550b-48df-b059-7fb75114a436","html_url":"https://github.com/devmattrick/enbeet","commit_stats":{"total_commits":8,"total_committers":1,"mean_commits":8.0,"dds":0.0,"last_synced_commit":"a346517e117e72d76c417e9253908208a1d69842"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmattrick%2Fenbeet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmattrick%2Fenbeet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmattrick%2Fenbeet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmattrick%2Fenbeet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devmattrick","download_url":"https://codeload.github.com/devmattrick/enbeet/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247280180,"owners_count":20912965,"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":["deserialization","enbeet","game","hacktoberfest","java","library","maven","minecraft","nbt","serialization"],"created_at":"2024-10-08T15:01:23.723Z","updated_at":"2026-05-02T04:37:16.153Z","avatar_url":"https://github.com/devmattrick.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# enbeet\nenbeet is a modern Java NBT library. Its codebase is intentionally small and easy to understand. It makes extensive use \nof the Optional API to make null handling much more explicit and safer.\n\n## Installation\nEnbeet is on Maven Central, so you don't need to include any repositories to use it. Simply add the following to your \npom.xml:\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eorg.mattrick\u003c/groupId\u003e\n    \u003cartifactId\u003eenbeet\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.2\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n## Usage\n```java\n// Reading NBT\nNBTReader reader = new NBTReader(new FileInputStream(\"example.nbt\"));\nNBTCompound compound = reader.read();\n\n// Getting a value\nSystem.out.println(compound.getString(\"test\").get());\n\n// Getting a nested value. Each level is a separate argument.\n// Note that keys can contain dots unlike other libraries.\nSystem.out.println(compound.getString(\"nested value\", \"test.Value\", \"aaaa\").get());\n\n// Setting values\n// Note that the type matters here. ints will be written as IntTag, etc...\ncompound.set(10, \"some\", \"nested\", \"key\");\n\n// Writing NBT\nNBTWriter writer = new NBTWriter(new FileOutputStream(\"output.nbt\"));\nwriter.write(compound);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevmattrick%2Fenbeet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevmattrick%2Fenbeet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevmattrick%2Fenbeet/lists"}