All Projects → jk-gan → flipper-plugin-redux-debugger

jk-gan / flipper-plugin-redux-debugger

Licence: MIT license
Flipper plugin for Redux in React Native

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to flipper-plugin-redux-debugger

expo-community-flipper
Flipper Support for Expo Apps in React Native
Stars: ✭ 82 (-1.2%)
Mutual labels:  flipper, flipper-plugin
rn-async-storage-flipper
React Native's Async Storage logger for Flipper
Stars: ✭ 45 (-45.78%)
Mutual labels:  flipper, flipper-plugin
flipper-plugin-reduxinspector
Redux Inspector for flipper (Extensible mobile app debugger).
Stars: ✭ 43 (-48.19%)
Mutual labels:  flipper, flipper-plugin
React Native Boilerplate
A React Native template for building solid applications 🐙, using JavaScript 💛 or Typescript 💙 (you choose).
Stars: ✭ 2,669 (+3115.66%)
Mutual labels:  redux-toolkit
limestone-accounts
Boilerplate Rails 5.2 multitenant SaaS application with webpack and Docker integration. Billing is scoped to accounts.
Stars: ✭ 97 (+16.87%)
Mutual labels:  flipper
flipper
Feature Flipper, Feature Flags, Rollout Flags, Feature Toggles for Crystal
Stars: ✭ 21 (-74.7%)
Mutual labels:  flipper
bce.design
minimal magic, minimal tooling, essential dependencies, high productivity, no transpilations and no migrations. The Web Components starter ships with integrated lit-html, redux-toolkit and vaadin router components.
Stars: ✭ 67 (-19.28%)
Mutual labels:  redux-toolkit
react-native-ultimate-starter
A React Native Ultimate Starter - react-navigation v5 + redux-toolkits + dark and light theme and more.
Stars: ✭ 16 (-80.72%)
Mutual labels:  redux-toolkit
tmdb-viewer
A movie browsing/favoriting app
Stars: ✭ 63 (-24.1%)
Mutual labels:  redux-toolkit
flipper-plugin-relay-devtools
Flipper plugin for Relay devtools
Stars: ✭ 26 (-68.67%)
Mutual labels:  flipper
typescript-nextjs-redux-toolkit-material-ui-example
TypeScript v3.8, Next.js v9, Redux Toolkit, Material-UI v4, react-hooks, SSR live demo
Stars: ✭ 61 (-26.51%)
Mutual labels:  redux-toolkit
nextjs-ts-antd-redux-storybook-starter
🏃🏼 Next.js + TypeScript + Ant Design + Redux Toolkit + Redux Saga + Styled Components + Jest + Storybook 企业级项目脚手架模板
Stars: ✭ 78 (-6.02%)
Mutual labels:  redux-toolkit
Flipper
🐬 Beautiful, performant feature flags for Ruby.
Stars: ✭ 2,732 (+3191.57%)
Mutual labels:  flipper
Flipper-iOS-App
iOS Mobile App to rule all Flipper's family
Stars: ✭ 335 (+303.61%)
Mutual labels:  flipper
react-ssr-starter
🔥 ⚛️ A React boilerplate for a universal web app with a highly scalable, offline-first foundation and our focus on performance and best practices.
Stars: ✭ 40 (-51.81%)
Mutual labels:  redux-toolkit
lightence-admin
Free and easy-to-use admin template based on React 17+
Stars: ✭ 337 (+306.02%)
Mutual labels:  redux-toolkit
ff4j-spring-boot-starter-parent
A spring boot starter for FF4J (Feature Flipping For Java)
Stars: ✭ 23 (-72.29%)
Mutual labels:  flipper
flipperzero-firmware
Flipper Zero firmware source code
Stars: ✭ 2,551 (+2973.49%)
Mutual labels:  flipper
typescript-eth-starter
🔌 Ethereum Dapp Basic Typescript Starter
Stars: ✭ 125 (+50.6%)
Mutual labels:  redux-toolkit
flipper
Search/Recommendation engine and metainformation server for fanfiction net
Stars: ✭ 29 (-65.06%)
Mutual labels:  flipper

Redux Debugger Plugin for Flipper

screenshot of the plugin

flipper-plugin-redux-debugger allows you read React Native redux logs inside Flipper now:

  • Action
  • State comparison

Get Started

  1. Install redux-flipper middleware and react-native-flipper in your React Native app:
yarn add redux-flipper react-native-flipper
# for iOS
cd ios && pod install
  1. Add the middleware into your redux store:
import { createStore, applyMiddleware } from "redux";

const middlewares = [
  /* other middlewares */
];

if (__DEV__) {
  const createDebugger = require("redux-flipper").default;
  middlewares.push(createDebugger());
}

const store = createStore(RootReducer, applyMiddleware(...middlewares));
  1. Install flipper-plugin-redux-debugger in Flipper desktop client:
Manage Plugins > Install Plugins > search "redux-debugger" > Install
  1. Start your app, then you should be able to see Redux Debugger on your Flipper app

Acknowledgement

This plugin is inspired by flipper-plugin-reduxinspector which only for Flutter.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].