Slide 5
Slide 5 text
A feature flag is a technique in software
development that attempts to provide an
alternative to maintaining multiple branches in
source code (known as feature branches), such
that a software feature can be tested even
before it is completed and ready for release.
Feature toggle is used to hide, enable or
disable the feature during runtime.
https://en.wikipedia.org/wiki/Feature_toggle
Feature flags give a software
organization the power to reduce
risk, iterate quicker, and gain more
control. Feature flags allow you to
decouple feature rollout from code
deployment.
https://featureflags.io/feature-flag-introduction/
Feature Toggles (often also referred to as Feature Flags) are a powerful
technique, allowing teams to modify system behavior without changing
code. They fall into various usage categories, and it's important to take that
categorization into account when implementing and managing toggles.
https://martinfowler.com/articles/feature-toggles.html