August 2017
Intermediate to advanced
332 pages
9h 16m
English
Feature toggle is a technique that is an alternative to maintaining multiple source code branches such that the feature can be tested before it is completed and ready for release. It is used to disable the feature for users but enable it for developers while testing. Feature toggles are essentially variables used in conditional statements.
The simplest implementation of feature toggles are flags and the if statements. A development using feature toggles, as opposed to feature branching development, looks as follows:
Read now
Unlock full access