minus-squareDelta@programming.devtoProgramming@programming.dev•Dear past me, use the flagslinkfedilinkEnglisharrow-up4·1 year agoFeature Flags is a concept that helps to enable or disable a feature on an app. Example you would want to roll out a new button on app for a certain set of users, A naive and simplified implementation would look like something below flags = server.getFlags() // Fetch/Compute feature flags if (flags.FeatureA == true) { // show button } linkfedilink
minus-squareDelta@programming.devtoProgramming@programming.dev•Postman alternatives?linkfedilinkEnglisharrow-up7·1 year agoInsomnia user here too, I’ve found it to be simple,clean and to my taste. linkfedilink
Feature Flags
is a concept that helps to enable or disable a feature on an app. Example you would want to roll out a new button on app for a certain set of users, A naive and simplified implementation would look like something belowflags = server.getFlags() // Fetch/Compute feature flags if (flags.FeatureA == true) { // show button }