Coder Social home page Coder Social logo

Comments (11)

camilo86 avatar camilo86 commented on May 24, 2024 1

Got tired of debugging this, and used redux-devtools-extension instead. Works great with the React Native Debugger App (if you happen to be developing for RN 😁)

from remote-redux-devtools.

camilo86 avatar camilo86 commented on May 24, 2024 1

Oh no, so I'm using React Native Debugger App. It bundles redux & react devtools into a single app. If you setup your store similar to how I did it, the app should work right away. You can get it here: https://github.com/jhen0409/react-native-debugger/releases

Also, make sure your device/emulator, has debugging enabled. On the emulator, hit Command + M and select Debug.

Screen Shot 2020-01-11 at 12 51 31 AM

If you happen to be debugging on a device via USB/wifi and can't get the above menu show up, run the following in your terminal : adb shell input keyevent 82

from remote-redux-devtools.

infezek avatar infezek commented on May 24, 2024 1

Being able to connect to react-native-debugger is working better than before, thank you very much for your help. 😆

from remote-redux-devtools.

infezek avatar infezek commented on May 24, 2024

I'm having this same problem, managed to solve?

from remote-redux-devtools.

camilo86 avatar camilo86 commented on May 24, 2024

Currently seeing the same issue

from remote-redux-devtools.

infezek avatar infezek commented on May 24, 2024

I'm using RN, thanks for the suggestion.

from remote-redux-devtools.

infezek avatar infezek commented on May 24, 2024

I tried to use here redux-devtools-extension with RN-Debugger-App, but not connecting to remoteDev, could you leave any examples? I've been trying to debugging remote-redux-devtools for a long time
Captura de tela de 2020-01-10 21-43-31

from remote-redux-devtools.

camilo86 avatar camilo86 commented on May 24, 2024

I'm creating my store as follows:
(I'm using sagas to handle side effects. Feel free to ignore that)

import { applyMiddleware, createStore } from 'redux';
import { composeWithDevTools } from 'redux-devtools-extension';
import createSagaMiddleware from 'redux-saga';
import sagas from '../sagas';
import rootReducer from '../reducers';

const sagaMiddleware = createSagaMiddleware();

export default function configureStore(preloadedState) {
  const middlewares = [sagaMiddleware];

  const store = createStore(rootReducer, preloadedState, composeWithDevTools(
    applyMiddleware(...middlewares)
  ));

  sagaMiddleware.run(sagas);

  return store;
}

from remote-redux-devtools.

infezek avatar infezek commented on May 24, 2024

Exactly what I tried to do, are you using google chrome extension? if so did you set anything up on it?

from remote-redux-devtools.

camilo86 avatar camilo86 commented on May 24, 2024

Awesome! No problem

from remote-redux-devtools.

petermercy avatar petermercy commented on May 24, 2024

I'm using React Native and having this error when trying to use remote-redux-devtools. Changing to redux-devtools-extension per @camilo86 's post solved the problem right away.

from remote-redux-devtools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.