Hard-coded fallbacks

Whenever you evaluate a flag, you pass a hard-coded fallback value, e.g.

const exampleFlag = hypertune.exampleFlag({ fallback: false });

If Hypertune Edge is unreachable and there's no build-time fallback snapshot of your flag logic, or there's an error evaluating the flag, you'll get this hard-coded fallback value instead.

This ensures that in the worst-case scenario, your app still works properly.

Last updated