Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrstebo/simplefeaturetoggle
A really simple library for checking if a feature is enabled/disabled
https://github.com/mrstebo/simplefeaturetoggle
feature toggles
Last synced: 6 days ago
JSON representation
A really simple library for checking if a feature is enabled/disabled
- Host: GitHub
- URL: https://github.com/mrstebo/simplefeaturetoggle
- Owner: mrstebo
- License: mit
- Created: 2016-10-25T12:43:33.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-04-24T23:13:52.000Z (over 2 years ago)
- Last Synced: 2024-12-10T01:54:52.290Z (24 days ago)
- Topics: feature, toggles
- Language: C#
- Size: 21.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build status](https://ci.appveyor.com/api/projects/status/c3kdvlw7g30kn99h?svg=true)](https://ci.appveyor.com/project/mrstebo/simplefeaturetoggle)
[![MyGet Prerelease](https://img.shields.io/myget/mrstebo/v/SimpleFeatureToggle.svg?label=MyGet_Prerelease)](https://www.myget.org/feed/mrstebo/package/nuget/SimpleFeatureToggle)
[![NuGet Version](https://img.shields.io/nuget/v/SimpleFeatureToggle.svg)](https://www.nuget.org/packages/SimpleFeatureToggle/)# SimpleFeatureToggle
A really simple library for checking if a feature is enabled/disabled## Quick Start
If you are using the `FileFeatureLoadingStrategy` then here is what the file should look like:
```js
{
"disabled-feature-1": 0
"disabled-feature-2": "n",
"disabled-feature-3": "false"
"enabled-feature-1": 1
"enabled-feature-2": "y",
"enabled-feature-3": "true",
}
```