Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 441 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 441 Bytes

Flipper Redux Observer

This plugin allows you to observe redux state. It is sending diff between old and new states instead of all states to Flipper desktop which makes it faster.

Installation

yarn add react-native-flipper flipper-redux-observer --dev

Setup

// index.js
if (__DEV__) {
  const flipperReduxObserver = require('flipper-redux-observer').default;
  middlewares.push(flipperReduxObserver());
}