Here's a detailed article to go further
- Disable JS Dev Mode in the settings (shake your device to open the development menu, then click settings)
- Click Start Measuring
- Do stuff in your app
- Check the score!
This is how the score is calculated below, quite naively, but open to suggestions:
Note that:
- the score depends on the device used. We advice using a lower-end device to accentuate performance issues.
- the score depends on what you do on your app while measuring. If you do nothing, your score should (hopefully) be 100!
Search for rn-perf-monitor
in the list of plugins.
Install the plugin
yarn add --dev react-native-flipper-performance-plugin
Then go to iOS/Android section below to continue the install
- Run
cd ios && pod install
Then depending on your RN version:
- In
./ios/yourapp/AppDelegate.mm
(whereyourapp
depends on your app), add those 8 lines below:
(You can check how it's done in the example folder)
// Add those 4 lines before @implementation AppDelegate
#ifdef FB_SONARKIT_ENABLED
#import <FlipperKit/FlipperClient.h>
#import <FlipperPerformancePlugin.h>
#endif
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// And those 4 lines before RCTAppSetupPrepareApp
#ifdef FB_SONARKIT_ENABLED
FlipperClient *client = [FlipperClient sharedClient];
[client addPlugin:[FlipperPerformancePlugin new]];
#endif
RCTAppSetupPrepareApp(application);
- In
./ios/yourapp/AppDelegate.m
(whereyourapp
depends on your app), add 2 lines:
#ifdef FB_SONARKIT_ENABLED
...
// Add this line
#import <FlipperPerformancePlugin.h>
static void InitializeFlipper(UIApplication *application) {
...
// Add this line
[client addPlugin:[FlipperPerformancePlugin new]];
[client start];
}
#endif
In ./android/app/src/debug/java/com/yourapp/ReactNativeFlipper.java
(where com/yourapp
depends on your app), add:
import tech.bam.rnperformance.flipper.RNPerfMonitorPlugin;
...
client.addPlugin(new RNPerfMonitorPlugin(reactInstanceManager));
You might have previously installed flipper-plugin-rn-performance-android
. This is now deprecated, as react-native-flipper-performance-plugin
has autolinking and cross-platform support.
You also need to run these steps:
Uninstall the package:
yarn remove flipper-plugin-rn-performance-android
Then remove those lines in ./android/settings.gradle
:
include ':flipper-plugin-rn-performance-android'
project(':flipper-plugin-rn-performance-android').projectDir = new File(rootProject.projectDir, '../node_modules/flipper-plugin-rn-performance-android')
and in ./android/app/build.gradle
:
debugImplementation project(':flipper-plugin-rn-performance-android')
-
This plugin does not work with Expo Go, since it adds native code. You can use an Expo custom-dev-client instead.
-
Install the Expo Flipper plugin. Documentation can be found here: Expo Community Flipper. Install the module along with react-native-flipper:
TL;DR:
yarn add -D expo-community-flipper react-native-flipper
-
Add
expo-community-flipper
configuration to theplugins
section of yourapp.json
. Please check Expo Community Flipper documentation if you need further settings. -
Add the plugin to this library AFTER
expo-community-flipper
{
"expo": {
"..."
"plugins": [
["expo-community-flipper"], // first
["react-native-flipper-performance-plugin"] // add this after
]
}
}
Make sure to run expo prebuild
or expo prebuild --clean
afterwards. If the plugin is not recognized on iOS, make sure you call npx pod-install
or cd ios && pod install
in the root directory of your project.
This library helps you to calculate a Lighthouse score similar to PageSpeed Insights. However, the tool is of no use to you if you cannot draw any optimizations from it. That is why it is recommended to use the plugin together with React DevTools.
The easiest way to use React DevTools is to install it as follows:
yarn add -D react-devtools-core
Then edit your App.tsx/App.js with following default settings.
import { connectToDevTools } from "react-devtools-core";
if (__DEV__) {
connectToDevTools({
host: "localhost",
port: 8097,
});
}
With DevTools you can easily determine why your app is taking too much time for a particular task, most importantly you can find out if you are re-rendering too often. Especially with lists, this can quickly become a knitting trap. Optimize your code and measure the FPS afterwards to get a decent score.
- Clone the repository.
- Add path to your local
react-native-performance
folder in~/.flipper/config.json
as shown on the flipper docs - Run
yarn watch
insideflipper-desktop
- Connect your debug app with the flipper android plugin installed.
- You should now see your plugin appear in Flipper.