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: 8 months 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-04-24T23:13:52.000Z (about 4 years ago)
- Last Synced: 2025-01-29T01:38:49.514Z (over 1 year 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
[](https://ci.appveyor.com/project/mrstebo/simplefeaturetoggle)
[](https://www.myget.org/feed/mrstebo/package/nuget/SimpleFeatureToggle)
[](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",
}
```