May 2019
Beginner to intermediate
456 pages
10h 37m
English
The feature toggle package includes a series of providers that can be used to control the value of an object that can, in turn, be used to decide whether the feature is accessible. You may ask why we use feature toggle. Well, it is easy to construct a simple if....else condition using a config key to control when the page gets shown. While magic strings can be used, toggles should be real things (objects), not just a loosely typed string. This helps effectively manage the feature flags over time. When using real toggles, you can do the following:
Feature flags allow you to decouple code deployments from feature releases. ...
Read now
Unlock full access