question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

I am not able to integrate dev tools for redux with navigator. Here is my store config file.I don’t know what I am doing wrong.

I have added chrome extention but always get ‘No store found’.

import ReduxThunk from 'redux-thunk';
import { NavigationReducer, createNavigationEnabledStore } from '@expo/ex-navigation';
import UserReducer from './userReducers'
import { composeWithDevTools } from 'remote-redux-devtools';

const composeEnhancers = composeWithDevTools({ realtime: true, port: 8000 });

const createStoreWithNavigation = createNavigationEnabledStore({
    createStore,
    navigationStateKey: 'navigation',
});

const Store = createStoreWithNavigation(
    combineReducers({
        user:UserReducer,
        navigation: NavigationReducer,
    }),
    composeEnhancers(
        applyMiddleware(ReduxThunk),
        // other store enhancers if any
    )
);
export default Store;

Issue Analytics

  • State:open
  • Created 6 years ago
  • Reactions:6
  • Comments:6 (1 by maintainers)

github_iconTop GitHub Comments

3reactions
mekaseymourcommented, Dec 13, 2017

@imod you can also right click in Chrome then select Redux DevTools > Open Remote DevTools

2reactions
zalmoxisuscommented, Jul 25, 2017

You should click Remote DevTools button from the bottom, then in that new window click on Settings and set your port. If you indicate the port, it means that you’re running remotedev-server. You can try without that at least to check that everything works. Additionally you can use web app instead of the extension.

Read more comments on GitHub >

github_iconTop Results From Across the Web

"No store found" when using Redux chrome extension
I've got the solution from here. The right code is : import {createStore, applyMiddleware, compose} from 'redux'; import rootReducer from '.
Read more >
Since this morning I'm getting "No store found. Make sure to ...
So I refresh the app I see the redux actions for a second 90% of the times I see "No store found. Make...
Read more >
No store found. Make sure to follow the instructions. | by Tan Dat
I have to right click on Redux Devtools Extension -> Open Remote DevTools -> Then change the Settings to use the custom server...
Read more >
configureStore - Redux Toolkit
An optional array of Redux store enhancers, or a callback function to ... it will be called with the existing array of enhancers...
Read more >
“no-store” is found in your Cache-Control - WordPress.org
But in compatibility im getting this message: “no-store” is found in your Cache-Control response header. Please contact your hosting provider to remove this....
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found