packages/react-native/src/private/featureflags/__docs__/README.md
Feature flags are values that determine the behavior of specific parts of React Native. This directory contains the configuration for those values, and scripts to generate files for different languages to access and customize them.
There are 2 types of feature flags:
The source of truth for the definition of the flags is the file
ReactNativeFeatureFlags.config.js in this directory.
Example contents:
module.exports = {
common: {
enableNativeBehavior: {
description: 'Enable some behavior both in native and in JS.',
defaultValue: false,
},
},
jsOnly: {
enableJSBehavior: {
description: 'Enables some behavior in the JS layer.',
defaultValue: false,
},
},
};
After any change to these definitions, the code that provides access to them
must be regenerated running this from the react-native repository:
yarn featureflags --update
You can access the common feature flags from anywhere in your application using
the ReactNativeFeatureFlags interface (available in C++/Objective-C++,
Kotlin/Java and JavaScript). JS-only feature flags can only be accessed from
JavaScript.
Accessing feature flags should be considered fast for all use cases. Feature flags are cached at every layer, which prevents having to go through JNI when accessing the values from Kotlin and through JSI when accessing the values from JavaScript.
#include <react/featureflags/ReactNativeFeatureFlags.h>
if (ReactNativeFeatureFlags::enableNativeBehavior()) {
// do something
}
import com.facebook.react.internal.featureflags.ReactNativeFeatureFlags
fun someMethod() {
if (ReactNativeFeatureFlags.enableNativeBehavior()) {
// do something
}
}
import * as ReactNativeFeatureFlags from 'react-native/src/private/featureflags/ReactNativeFeatureFlags';
if (ReactNativeFeatureFlags.enableNativeBehavior()) {
// Native flag
}
if (ReactNativeFeatureFlags.enableJSBehavior()) {
// JS-only flag
}
Feature flags provide the default values defined in the configuration unless overrides are applied at the application level. Overrides for common feature flags can only be defined in native, while overrides for JS-ony flags can only be defined in JavaScript.
Overrides must be applied before any of the available feature flags has been accessed. This prevents having inconsistent behavior during the lifecycle of the application.
#include <react/featureflags/ReactNativeFeatureFlags.h>
#include <react/featureflags/ReactNativeFeatureFlagsDefaults.h>
class CustomReactNativeFeatureFlags : public ReactNativeFeatureFlagsDefaults {
public:
CustomReactNativeFeatureFlags();
bool enableNativeBehavior() override {
return true;
}
}
ReactNativeFeatureFlags::override(std::make_unique<CustomReactNativeFeatureFlags>());
import com.facebook.react.internal.featureflags.ReactNativeFeatureFlags
import com.facebook.react.internal.featureflags.ReactNativeFeatureFlagsDefaults
fun overrideFeatureFlags() {
ReactNativeFeatureFlags.override(object : ReactNativeFeatureFlagsDefaults() {
override fun useMicrotasks(): Boolean = true
})
}
import * as ReactNativeFeatureFlags from 'react-native/src/private/featureflags/ReactNativeFeatureFlags';
ReactNativeFeatureFlags.override({
enableJSBehavior: () => true,
});
You can find the list of feature flags with their configuration in
ReactNativeFeatureFlags.config.js,
but you can also use the CLI to list them:
yarn featureflags --print
Which would print something like:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโฌโโโโโโโโโโโโโโโ
โ (index) โ Description โ Purpose โ Date added โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโผโโโโโโโโโโโโโโโค
โ enableFabricLogs โ 'This feature flag enables logs for Fabric.' โ '๐จ' โ undefined โ
โ jsOnlyTestFlag โ 'JS-only flag for testing. Do NOT modify.' โ '๐จ' โ undefined โ
โ enableBridgelessArchitecture โ 'Feature flag to enable the new bridgeless architecture. Note: Enabling this will force enable the fo...' โ '๐' โ undefined โ
โ useTurboModules โ 'When enabled, NativeModules will be executed by using the TurboModule system' โ '๐' โ undefined โ
โ animatedShouldDebounceQueueFlush โ 'Enables an experimental flush-queue debouncing in Animated.js.' โ '๐งช' โ '2024-02-05' โ
โ useTurboModuleInterop โ 'In Bridgeless mode, should legacy NativeModules use the TurboModule system?' โ '๐งช' โ '2024-07-28' โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโดโโโโโโโโโโโโโโโ
Summary
โโโโโโโโโโโโโโโโโโโฌโโโโโโโโโ
โ (index) โ Values โ
โโโโโโโโโโโโโโโโโโโผโโโโโโโโโค
โ Total โ 55 โ
โ Common โ 43 โ
โ JS Only โ 12 โ
โ Operational โ 5 โ
โ Release โ 16 โ
โ Experimentation โ 34 โ
โโโโโโโโโโโโโโโโโโโดโโโโโโโโโ
If you need to consume this as structured data, you can print it as JSON using:
yarn featureflags --print --json
The architecture of this feature flags system can be described as follows:
Most of the code for this system is automatically generated from
ReactNativeFeatureFlags.config.js.
The entrypoint for the codegen can be found
here.
The codegen uses a simple templating system based on JavaScript template strings
to generate the files (see files ending with -template.js in the
templates directory),
This system is used extensively throughout the codebase and it evolves over time as feature flags are added or cleaned up.