{"id":23983408,"url":"https://github.com/soenneker/soenneker.config.realtime","last_synced_at":"2026-04-22T01:09:25.441Z","repository":{"id":270154929,"uuid":"909488334","full_name":"soenneker/soenneker.config.realtime","owner":"soenneker","description":"A configuration provider allowing for realtime modification","archived":false,"fork":false,"pushed_at":"2026-03-31T12:46:55.000Z","size":880,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-31T14:42:06.856Z","etag":null,"topics":["config","configuration","csharp","dotnet","provider","realtime","realtimeconfigurationprovider","service","source","util"],"latest_commit_sha":null,"homepage":"https://soenneker.com","language":"C#","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/soenneker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"soenneker","thanks_dev":"soenneker"}},"created_at":"2024-12-28T21:15:27.000Z","updated_at":"2026-03-31T12:46:34.000Z","dependencies_parsed_at":"2025-12-10T18:04:32.224Z","dependency_job_id":null,"html_url":"https://github.com/soenneker/soenneker.config.realtime","commit_stats":null,"previous_names":["soenneker/soenneker.config.realtime"],"tags_count":141,"template":false,"template_full_name":null,"purl":"pkg:github/soenneker/soenneker.config.realtime","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soenneker%2Fsoenneker.config.realtime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soenneker%2Fsoenneker.config.realtime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soenneker%2Fsoenneker.config.realtime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soenneker%2Fsoenneker.config.realtime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/soenneker","download_url":"https://codeload.github.com/soenneker/soenneker.config.realtime/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soenneker%2Fsoenneker.config.realtime/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["config","configuration","csharp","dotnet","provider","realtime","realtimeconfigurationprovider","service","source","util"],"created_at":"2025-01-07T12:16:26.285Z","updated_at":"2026-04-01T18:54:21.745Z","avatar_url":"https://github.com/soenneker.png","language":"C#","funding_links":["https://github.com/sponsors/soenneker","https://thanks.dev/soenneker"],"categories":[],"sub_categories":[],"readme":"[![](https://img.shields.io/nuget/v/soenneker.config.realtime.svg?style=for-the-badge)](https://www.nuget.org/packages/soenneker.config.realtime/)\n[![](https://img.shields.io/github/actions/workflow/status/soenneker/soenneker.config.realtime/publish-package.yml?style=for-the-badge)](https://github.com/soenneker/soenneker.config.realtime/actions/workflows/publish-package.yml)\n[![](https://img.shields.io/nuget/dt/soenneker.config.realtime.svg?style=for-the-badge)](https://www.nuget.org/packages/soenneker.config.realtime/)\n[![](https://img.shields.io/github/actions/workflow/status/soenneker/soenneker.config.realtime/codeql.yml?label=CodeQL\u0026style=for-the-badge)](https://github.com/soenneker/soenneker.config.realtime/actions/workflows/codeql.yml)\n\n# ![](https://user-images.githubusercontent.com/4441470/224455560-91ed3ee7-f510-4041-a8d2-3fc093025112.png) Soenneker.Config.Realtime\n\n### Real-time, thread-safe configuration updates for .NET applications.\n\n## Features\n\n- **Real-Time Updates**: Dynamically add, update, or remove configuration values at runtime.\n- **Thread-Safe**: Safe updates in multi-threaded environments.\n- **Hierarchical Keys**: Supports nested keys using `:` as a separator (e.g., `AppSettings:FeatureFlag`).\n- **Automatic Propagation**: Updates are reflected in `IConfiguration` consumers.\n\n---\n\n## Installation\n\n```bash\ndotnet add package Soenneker.Config.Realtime\n```\n\nYou just need access to `IServiceCollection` and `IBuilderConfiguration`:\n\n```csharp\nserviceCollection.AddRealtimeConfiguration(builderConfiguration);\n```\n\nThis is just one example:\n\n```csharp\nvar builder = WebApplication.CreateBuilder(args);\n\n// Add and register the RealtimeConfigurationProvider in one step\nbuilder.Services.AddRealtimeConfiguration(builder.Configuration);\n\nvar app = builder.Build();\n```\n\n## Usage\n\n```csharp\npublic class MyService\n{\n    private readonly IRealtimeConfigurationProvider _configProvider;\n    private readonly IConfiguration _config;\n\n    // Simply inject IRealtimeConfigurationProvider:\n    public MyService(IRealtimeConfigurationProvider configProvider, IConfiguration config)\n    {\n        _configProvider = configProvider;\n        _config = config;\n    }\n\n    public void SetKeyDynamically()\n    {\n        // Make your updates\n        _configProvider.Set(\"SomeKey\", \"SomeValue\");\n    }\n\n    public void ReadUpdatedValue()\n    {\n        // IConfiguration is now updated\n        string newValue = _config[\"SomeKey\"]; // Outputs: \"SomeValue\"\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoenneker%2Fsoenneker.config.realtime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoenneker%2Fsoenneker.config.realtime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoenneker%2Fsoenneker.config.realtime/lists"}