I’m sure many of you have already heard of feature toggles, and perhaps even use them regularly. But I know that there are plenty of developers out there who don’t use them at all when rolling out new features. This has to change!
Disclaimer. In this article, I won’t be delving into recommended tools and software for the implementation of this technique.
Feature toggles (or feature flags as they are otherwise known), is a technique that allows you to switch on/off specific features without changing the code of the app (be that web, mobile or desktop).
Every user of the…