{"id":24572063,"url":"https://github.com/lightbender/configd","last_synced_at":"2026-01-03T14:39:02.380Z","repository":{"id":92692931,"uuid":"75712941","full_name":"LightBender/configd","owner":"LightBender","description":"Key/Value Configuration Library for D","archived":false,"fork":false,"pushed_at":"2016-12-08T04:05:28.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-23T18:52:44.320Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"D","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LightBender.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":"2016-12-06T08:54:09.000Z","updated_at":"2016-12-08T08:25:52.000Z","dependencies_parsed_at":"2023-04-27T07:05:39.845Z","dependency_job_id":null,"html_url":"https://github.com/LightBender/configd","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LightBender%2Fconfigd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LightBender%2Fconfigd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LightBender%2Fconfigd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LightBender%2Fconfigd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LightBender","download_url":"https://codeload.github.com/LightBender/configd/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244006578,"owners_count":20382485,"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":[],"created_at":"2025-01-23T18:50:50.544Z","updated_at":"2026-01-03T14:39:02.312Z","avatar_url":"https://github.com/LightBender.png","language":"D","funding_links":[],"categories":[],"sub_categories":[],"readme":"# configd\n\nconfigd is a D library that provides a unified storage and retrival API for application configuration information. The configd API is extensible and can support any configuration source that can be mapped to key/value pair.\n\n## Configuration Providers\n\nconfigd supports the following configuration providers:\n- EnvironmentConfig - Loads the applications envirvonment variables under the '/env/' path.\n- MemoryConfig - Allows the developer to specify configuration values in code.\n- JsonConfig - Loads configuration information from the specified JSON file.\n\n## Example Usage\n\n```\nimport std.stdio;\nimport configd;\n\nauto mem = new MemoryConfig(\"memory\");\nmem.set(\"test\", \"Hello World\");\n\nauto config = new Configuration()\n\t.addJsonConfig(\"./config.json\", \"config\");\n\t.addMemoryConfig(mem);\n\t.addEnvironmentConfig();\nconfig.build();\n\nauto envPath = config.get!string(\"/env/path\");\nwriteln(envPath);\n\nauto keys = config.listKeys();\nforeach(k; keys)\n\twriteln(k);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flightbender%2Fconfigd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flightbender%2Fconfigd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flightbender%2Fconfigd/lists"}