Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felipebaltazar/featureflag.management
Control your features with this escalable, mockable and decoupled sdk
https://github.com/felipebaltazar/featureflag.management
feature feature-flags feature-manager feature-toggle feature-toggles feature-toggling firebase flags hacktoberfest remote remote-config
Last synced: 7 days ago
JSON representation
Control your features with this escalable, mockable and decoupled sdk
- Host: GitHub
- URL: https://github.com/felipebaltazar/featureflag.management
- Owner: felipebaltazar
- License: mit
- Created: 2021-08-14T19:39:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-07T01:24:42.000Z (over 1 year ago)
- Last Synced: 2024-12-21T13:15:40.621Z (20 days ago)
- Topics: feature, feature-flags, feature-manager, feature-toggle, feature-toggles, feature-toggling, firebase, flags, hacktoberfest, remote, remote-config
- Language: C#
- Homepage:
- Size: 479 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FeatureFlag.Management
Control your features with this escalable, mockable and decoupled sdk[![NuGet](https://img.shields.io/nuget/v/FeatureFlag.Management.svg)](https://www.nuget.org/packages/FeatureFlag.Management/)
[![NuGet](https://img.shields.io/nuget/v/FeatureFlag.Management.Firebase.svg)](https://www.nuget.org/packages/FeatureFlag.Management.Firebase/)## Getting started
- Install the FeatureFlag.Management package
```
Install-Package FeatureFlag.Management -Version 0.0.1-pre
```- You can get your features using the FeatureFlagManager (building new instance or DI)
```csharp
var manager = new FeatureFlagManager(new MyResolver());
var myFeature = manager.Get();if (myFeature.IsEnabled)
{
// do somethng
}
```