{"id":16380204,"url":"https://github.com/felixklauke/babylon","last_synced_at":"2026-05-05T08:31:54.020Z","repository":{"id":45289917,"uuid":"98079281","full_name":"felixklauke/babylon","owner":"felixklauke","description":"A simple experimental config format in json style but with comments and some random cool features","archived":false,"fork":false,"pushed_at":"2022-07-13T10:53:42.000Z","size":13,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-08T13:56:17.075Z","etag":null,"topics":["babylon","config","experimental","json","lightweight","sasuke","sasukekawaii","simple","yaml"],"latest_commit_sha":null,"homepage":null,"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/felixklauke.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}},"created_at":"2017-07-23T06:30:28.000Z","updated_at":"2022-07-13T10:53:45.000Z","dependencies_parsed_at":"2022-07-13T15:31:00.076Z","dependency_job_id":null,"html_url":"https://github.com/felixklauke/babylon","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/felixklauke/babylon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixklauke%2Fbabylon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixklauke%2Fbabylon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixklauke%2Fbabylon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixklauke%2Fbabylon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/felixklauke","download_url":"https://codeload.github.com/felixklauke/babylon/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixklauke%2Fbabylon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32642007,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"online","status_checked_at":"2026-05-05T02:00:06.033Z","response_time":54,"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":["babylon","config","experimental","json","lightweight","sasuke","sasukekawaii","simple","yaml"],"created_at":"2024-10-11T03:50:43.909Z","updated_at":"2026-05-05T08:31:53.993Z","avatar_url":"https://github.com/felixklauke.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Babylon\n\nCaution: Still under heavy development\n\nBabylon is a little experimental not really ready to use config format. It aims to replace\njson as a config format in my projects by providing the following features: \n- Highly human readable\n- Add comments for all values (Main reason of replacing json)\n- Simple and clean API\n- Managing the config as a model with annotations\n\nOn config initialization babylon will check for an existing config and will create a new one\nif the file does not exist or read the known config.\n\n# Installation / Usage\n\n- Install [Maven](http://maven.apache.org/download.cgi)\n- Clone this repo\n- Instal: ```mvn clean install```\n\n**Maven dependencies**\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ede.felix_klauke\u003c/groupId\u003e\n    \u003cartifactId\u003ebabylon\u003c/artifactId\u003e\n    \u003cversion\u003e1.0-SNAPSHOT\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n# Example\n\n_Model:_\n```java\npublic class TestConfig extends Config {\n\n    private String test;\n    private String meh;\n    \n    @Skip\n    private MessageManager messageManager;\n    \n    public TestConfig(String test, String meh, MessageManager messageManager) {\n        this.test = test;\n        this.meh = meh;\n        this.messageManager = messageManager;\n    }\n\n    public TestConfig() {\n    }\n}\n```\n\n_Initialize config:_\n```java\nBabylon babylon = BabylonFactory.createBabylon();\nConfig config = new TestConfig();\n\nbabylon.initializeConfig(config, new File(\"config.bbl\"));\n```\n\n_Comments in the config:_\n```java\n@Comment( \"I am a commented field\" )\nprivate String name = \"SasukeKawaiiTheKing\";\n```\n\nComments will look like this: \n```\n{\n\t# I am a commented field\n\tname: \"SasukeKawaiiTheKing\"\n}\n```\n\n_Renaming fields:_\n```java\n@Name( \"customName\" )\nprivate String name = \"SasukeKawaiiTheKing\";\n```\n\nRenaming will look like this:\n```\n{\n\tcustomName: \"SasukeKawaiiTheKing\"\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelixklauke%2Fbabylon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffelixklauke%2Fbabylon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelixklauke%2Fbabylon/lists"}