Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 2.05 KB

redux-devtools-integration.md

File metadata and controls

38 lines (28 loc) · 2.05 KB

Redux DevTools Integration

We used RemoteDev App and made the API same with Redux DevTools Extension.

If you've enabled Debug JS remotely with React Native Debugger, the following API is already included in global:

  • window.__REDUX_DEVTOOLS_EXTENSION__
  • window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
  • window.__REDUX_DEVTOOLS_EXTENSION__.connect
  • You can just use redux-devtools-extension npm package.

See also:

You can ignore the things specified by the browser extension.

About trace feature

  • The debugger app might be slowed down if you enabled the trace feature and visited the Trace tab, because it will load and parse the source map for every selected action.

Other documentations