Feature Flags

Feature Toggles

Definition
A configuration of on/off flags that control which features are active
Feature Flags

How does it work?

Keep a list of boolean attributes that represent features. Choose which features are active or inactive in each separate environment.

When should you use it?

  • When too many features are developed and tested at the same time for branching to be feasible.
  • To do A/B testing giving different user groups access to different features

Links