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: 8 months 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 (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-09-07T01:24:42.000Z (over 2 years ago)
- Last Synced: 2025-09-22T05:27:10.147Z (9 months 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: 5
- Watchers: 2
- 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
[](https://www.nuget.org/packages/FeatureFlag.Management/)
[](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
}
```