Twitter: @Chris_L_Ayers Mastodon: @Chrisayers@hachyderm.io LinkedIn: - chris-l-ayers Blog: https://chris-ayers.com/ GitHub: Codebytes
Feature Flags are also known as Feature Toggles.
Feature flags can be simple configuration settings with Boolean, string or other values.
Lets find out
bool featureFlag = true; if (featureFlag) { // Run the following code }
Dynamic toggling based on some information and rules
bool featureFlag = isBetaUser(); if (featureFlag) { // Run the following code }
OpenFeature is an open standard for feature flag management. OpenFeature provides a unified API and SDK, with extensibility for open source and commercial offerings.
https://openfeature.dev/