{"id":19220100,"url":"https://github.com/nativescript-community/flipper-plugin-nativescript-performance","last_synced_at":"2026-02-28T17:03:45.320Z","repository":{"id":94067901,"uuid":"306895279","full_name":"nativescript-community/flipper-plugin-nativescript-performance","owner":"nativescript-community","description":"Inspect React Native performance with Flipper","archived":false,"fork":false,"pushed_at":"2020-07-20T13:06:38.000Z","size":1228,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-28T01:41:50.067Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nativescript-community.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["oblador"]}},"created_at":"2020-10-24T13:57:42.000Z","updated_at":"2020-11-01T12:19:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"987784c1-a73a-4310-ab28-474f2c174426","html_url":"https://github.com/nativescript-community/flipper-plugin-nativescript-performance","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/nativescript-community/flipper-plugin-nativescript-performance","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nativescript-community%2Fflipper-plugin-nativescript-performance","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nativescript-community%2Fflipper-plugin-nativescript-performance/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nativescript-community%2Fflipper-plugin-nativescript-performance/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nativescript-community%2Fflipper-plugin-nativescript-performance/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nativescript-community","download_url":"https://codeload.github.com/nativescript-community/flipper-plugin-nativescript-performance/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nativescript-community%2Fflipper-plugin-nativescript-performance/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29943678,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T13:49:17.081Z","status":"ssl_error","status_checked_at":"2026-02-28T13:48:50.396Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T14:33:59.956Z","updated_at":"2026-02-28T17:03:45.300Z","avatar_url":"https://github.com/nativescript-community.png","language":null,"funding_links":["https://github.com/sponsors/oblador"],"categories":[],"sub_categories":[],"readme":"# Flipper React Native Performance Plugin\n\nThis is a plugin for the debug tool [Flipper](https://fbflipper.com) that measures the startup of your React Native app.\n\n\u003cimg width=\"761\" alt=\"\" src=\"https://user-images.githubusercontent.com/378279/70002854-9b50db80-1561-11ea-861c-6b160f08d721.png\"\u003e\n\nIt provides the following metrics:\n\n- Native startup time\n- Script download time\n- Script execution time\n- Script bundle size\n- Time to interactive of root view\n\nCurrently only these standard metrics on iOS is supported, but the aim is to further expand profiling capabilities and add Android support in the future.\n\n## Installation\n\n```\nyarn add --dev flipper-plugin-react-native-performance\n```\n\n## Setup\n\n### Flipper\n\nFirst, make sure you have successfully [setup Flipper with your React Native app](https://fbflipper.com/docs/getting-started.html#setup-your-react-native-app).\n\n### Flipper Desktop\n\n1. Go to **Manage Plugins** by pressing the button in the lower left corner of the Flipper app, or in the **View** menu\n2. Select **Install Plugins** and search for `react-native-performance`\n3. Press the **Install** button\n\n### iOS\n\nEdit your `Podfile` by adding the following:\n\n```diff\ndef flipper_pods()\n  ...\n+ pod 'flipper-plugin-react-native-performance', :path =\u003e \"../node_modules/flipper-plugin-react-native-performance/ios\", :configuration =\u003e 'Debug'\nend\n```\n\nEdit your `AppDelegate.m` by adding the following:\n\n```diff\n+   #if DEBUG\n+   #ifdef FB_SONARKIT_ENABLED\n+   #import \u003cflipper-plugin-react-native-performance/FlipperReactPerformancePlugin.h\u003e\n+   #endif\n+   #endif\n\n@implementation AppDelegate\n\n  - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions\n  {\n    [self initializeFlipper:application];\n    RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];\n+   #if DEBUG\n+   #ifdef FB_SONARKIT_ENABLED\n+   [[FlipperReactPerformancePlugin sharedInstance] setBridge:bridge];\n+   #endif\n+   #endif\n    ...\n  }\n\n  - (void) initializeFlipper:(UIApplication *)application {\n    ...\n+   [client addPlugin: [FlipperReactPerformancePlugin sharedInstance]];\n    [client start];\n    ...\n  }\n```\n\n#### Setup for React Native Navigation\n\nEdit your `AppDelegate.m` like above, but for the `application:didFinishLaunchingWithOptions` method, add the following instead:\n\n```diff\n  - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions\n  {\n    [self initializeFlipper:application];\n    NSURL *jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@\"index\" fallbackResource:nil];\n    [ReactNativeNavigation bootstrap:jsCodeLocation launchOptions:launchOptions];\n+   #if DEBUG\n+   #ifdef FB_SONARKIT_ENABLED\n+   [[FlipperReactPerformancePlugin sharedInstance] setBridge:[ReactNativeNavigation getBridge]];\n+   #endif\n+   #endif\n    ...\n  }\n```\n\n## Demo\n\nSee the projects in the [`examples`](https://github.com/oblador/flipper-plugin-react-native-performance/tree/master/examples) folder.\n\n## License\n\nMIT © Joel Arvidsson 2019 – present\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnativescript-community%2Fflipper-plugin-nativescript-performance","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnativescript-community%2Fflipper-plugin-nativescript-performance","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnativescript-community%2Fflipper-plugin-nativescript-performance/lists"}