Socket
Socket
Sign inDemoInstall

react-native-flipper

Package Overview
Dependencies
Maintainers
2
Versions
187
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-flipper

Flipper bindings for React Native


Version published
Weekly downloads
230K
decreased by-8.23%
Maintainers
2
Weekly downloads
 
Created

What is react-native-flipper?

react-native-flipper is a plugin for integrating the Flipper debugging tool with React Native applications. It allows developers to inspect, debug, and analyze their React Native apps using the Flipper desktop application.

What are react-native-flipper's main functionalities?

Network Inspection

This feature allows developers to inspect network requests made by the React Native app. The code sample demonstrates how to add the NetworkPlugin to Flipper.

import { addPlugin } from 'react-native-flipper';
import { NetworkPlugin } from 'flipper-plugin-network';

addPlugin(NetworkPlugin);

Crash Reporting

This feature enables crash reporting for the React Native app. The code sample shows how to integrate the CrashReporterPlugin with Flipper.

import { addPlugin } from 'react-native-flipper';
import { CrashReporterPlugin } from 'flipper-plugin-crash-reporter';

addPlugin(CrashReporterPlugin);

Layout Inspection

This feature allows developers to inspect the layout of their React Native app. The code sample demonstrates how to add the LayoutInspectorPlugin to Flipper.

import { addPlugin } from 'react-native-flipper';
import { LayoutInspectorPlugin } from 'flipper-plugin-layout-inspector';

addPlugin(LayoutInspectorPlugin);

Async Storage Inspection

This feature enables inspection of Async Storage data in the React Native app. The code sample shows how to integrate the AsyncStoragePlugin with Flipper.

import { addPlugin } from 'react-native-flipper';
import { AsyncStoragePlugin } from 'flipper-plugin-async-storage';

addPlugin(AsyncStoragePlugin);

Other packages similar to react-native-flipper

Keywords

FAQs

Package last updated on 21 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc