1

This is more like a design question. We have an in-house AB testing tool and we want to understand what is the best practice on where the feature flag resolution happens in the code. By Resolve I mean where do we put the IF check like

if (feature.isEnabled) {
// show feature
} else { 
// show default 
}

If these happen at client side then for Native app or Single Page App we will need to deliver all the feature flags to the client devices (immaterial of the landing screen/page configs)

Please share some of your thoughts or design.

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.