@launchdarkly/react-native-client-sdk
v10.9.2
Published
React Native LaunchDarkly SDK
Downloads
98,370
Maintainers
Readme
LaunchDarkly React Native SDK
The LaunchDarkly React Native SDK is designed primarily for use in mobile environments. It follows the client-side LaunchDarkly model for multi-user contexts.
This SDK is a complete rewrite of the React Native SDK and replaces launchdarkly-react-native-client-sdk. The APIs are based on the JS SDK rather than the iOS and Android SDKs. It is not a wrapper of the iOS and Android SDKs. It is implemented purely in JS and supports Expo. Please consider updating your application to use this package instead.
For more information, see the complete reference guide for this SDK.
Known Android identify issue
With Expo versions less than 51.0.21
and React Native versions less than 0.74.3
, the identify operation will not be complete in a debug configuration. If using Expo Go, you must ensure you have version 2.31.2
or greater.
This is the expo PR that resolved this issue: https://github.com/expo/expo/pull/30062
If you are using expo after that release, as well as a React Native version without flipper, then the SDK should be able to identify in debug mode. We specifically tried Expo version 51.0.21
with React Native 0.74.3
, but some other patch version combinations may work.
The SDK uses SSE streaming to get flag data and in React Native versions with Flipper, the network capture interferes with HTTP requests that are streamed through HTTP.
Expo also includes network debugging, which interfered with streaming responses before the above patch.
When running with expo start
, which will run with Expo Go by default, the Expo Go binary includes the native expo code. This is why an Expo Go version which contains the relevant patch must be used.
If older versions of expo and RN are used, then a release build configuration can be used to work around this issue.
Install
yarn add @launchdarkly/react-native-client-sdk
Additionally, the LaunchDarkly React-Native SDK uses @react-native-async-storage/async-storage for bootstrapping. This is a native dependency.
If you are using expo, then installing this package from npm like above and re-running pod install should suffice.
If you are not using expo, you will need to explicitly add @react-native-async-storage/async-storage as a dependency to your project and re-run pod install for auto-linking to work.
Quickstart
- Wrap your application with
LDProvider
and set theclient
prop to an instance ofReactNativeLDClient
. Callidentify
at a later time to get flags. In the example below,identify
is called on App mount:
// App.tsx
import { LDProvider, ReactNativeLDClient } from '@launchdarkly/react-native-client-sdk';
const featureClient = new ReactNativeLDClient('mobile-key', AutoEnvAttributes.Enabled);
const userContext = { kind: 'user', key: 'test-user-1' };
const App = () => {
useEffect(() => {
featureClient.identify(userContext).catch((e) => console.error(e));
}, []);
return (
<LDProvider client={featureClient}>
<YourComponent />
</LDProvider>
);
};
export default App;
- Then in a child component, evaluate flags with
useBoolVariation
:
import { useBoolVariation } from '@launchdarkly/react-native-client-sdk';
export default function Welcome() {
const flagValue = useBoolVariation('flag-key', false);
return (
<View style={styles.container}>
<Text>Welcome to LaunchDarkly</Text>
<Text>Flag value is {`${flagValue}`}</Text>
</View>
);
}
See the full example app.
Developing this SDK
- Build all the code in the
js-core
repo:
# at js-core repo root
yarn && yarn build
- The example app uses react-native-dotenv
to manage environment variables. Under
packages/sdk/react-native/example
create an.env
file and add your mobile key:
echo "MOBILE_KEY=mob-abc" >> packages/sdk/react-native/example/.env
- Run the example app. This will link the local react-native sdk code to the example app for development:
# in react-native/example
yarn && yarn ios-go
Privacy manifest
At WWDC23, Apple introduced the concept of Privacy Manifests. The privacy manifest describes our data usage with respect to the minimum case of data collection. You will have to update your own privacy manifest if you choose to collect more data in your implementation than the minimum for our SDK to function.
For the LaunchDarkly React Native SDK, you can use the privacy manifest included in the LaunchDarkly iOS Client SDK. The data usage information is the same for the two SDKs.
To learn more about Privacy Manifests, please refer to Apple Developer Documentation.
To learn more about Privacy Manifests specifically for React Native, please refer to this discussion.
Verifying SDK build provenance with the SLSA framework
LaunchDarkly uses the SLSA framework (Supply-chain Levels for Software Artifacts) to help developers make their supply chain more secure by ensuring the authenticity and build integrity of our published SDK packages. To learn more, see the provenance guide.
About LaunchDarkly
- LaunchDarkly is a continuous delivery platform that provides feature flags as a service and allows developers to iterate quickly and safely. We allow you to easily flag your features and manage them from the LaunchDarkly dashboard. With LaunchDarkly, you can:
- Roll out a new feature to a subset of your users (like a group of users who opt-in to a beta tester group), gathering feedback and bug reports from real-world use cases.
- Gradually roll out a feature to an increasing percentage of users, and track the effect that the feature has on key metrics (for instance, how likely is a user to complete a purchase if they have feature A versus feature B?).
- Turn off a feature that you realize is causing performance problems in production, without needing to re-deploy, or even restart the application with a changed configuration file.
- Grant access to certain features based on user attributes, like payment plan (eg: users on the ‘gold’ plan get access to more features than users in the ‘silver’ plan).
- Disable parts of your application to facilitate maintenance, without taking everything offline.
- LaunchDarkly provides feature flag SDKs for a wide variety of languages and technologies. Read our documentation for a complete list.
- Explore LaunchDarkly
- launchdarkly.com for more information
- docs.launchdarkly.com for our documentation and SDK reference guides
- apidocs.launchdarkly.com for our API documentation
- blog.launchdarkly.com for the latest product updates