2017-05-02 11:55:14 +08:00
# Redux DevTools Integration
2023-07-25 14:49:52 +08:00
We used [@redux-devtools/app ](https://github.com/reduxjs/redux-devtools/tree/main/packages/redux-devtools-app ) and made the API same with [Redux DevTools Extension ](https://github.com/reduxjs/redux-devtools/tree/main/extension ).
2017-05-02 11:55:14 +08:00
2017-11-30 13:24:48 +05:30
If you've enabled `Debug JS remotely` with React Native Debugger, the following API is already included in global:
2017-05-02 11:55:14 +08:00
2018-09-29 18:32:42 +08:00
- `window.__REDUX_DEVTOOLS_EXTENSION__`
- `window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__`
- `window.__REDUX_DEVTOOLS_EXTENSION__.connect`
- You can just use [`redux-devtools-extension` ](https://www.npmjs.com/package/redux-devtools-extension ) npm package.
2017-05-02 11:55:14 +08:00
See also:
2023-07-25 14:49:52 +08:00
- [Redux DevTools main repository]](https://github.com/reduxjs/redux-devtools/blob/main/README.md)
- [API Reference ](https://github.com/reduxjs/redux-devtools/tree/main/extension/docs/API )
- [Troubleshooting ](https://github.com/reduxjs/redux-devtools/blob/main/extension/docs/Troubleshooting.md )
2018-09-29 18:32:42 +08:00
- Other Integrations
2023-07-22 10:10:55 +08:00
- [`mobx-state-tree` ](https://github.com/mobxjs/mobx-state-tree ) - Use [`connectReduxDevtools` ](https://github.com/mobxjs/mobx-state-tree/tree/3fc79b0b3ce7ad3e26d6bd5745fd9412d35c431c/packages/mst-middlewares#connectreduxdevtools ) middleware.
2017-09-13 17:32:53 +08:00
2020-10-05 15:02:24 +08:00
You can ignore the things specified by the browser extension.
2017-09-13 03:33:46 +08:00
2020-09-19 13:28:51 +08:00
## About `trace` feature
2020-10-05 15:02:24 +08:00
- 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.
2020-09-19 13:28:51 +08:00
2017-09-13 03:33:46 +08:00
## Other documentations
2018-09-29 18:32:42 +08:00
- [Getting Started ](getting-started.md )
- [Debugger Integration ](debugger-integration.md )
- [React DevTools Integration ](react-devtools-integration.md )
2019-02-01 14:04:10 +08:00
- [Apollo Client DevTools Integration ](apollo-client-devtools-integration.md )
2018-09-29 18:32:42 +08:00
- [Shortcut references ](shortcut-references.md )
- [Network inspect of Chrome Developer Tools ](network-inspect-of-chrome-devtools.md )
- [Enable open in editor in console ](enable-open-in-editor-in-console.md )
- [Config file in home directory ](config-file-in-home-directory.md )
- [Troubleshooting ](troubleshooting.md )
- [Contributing ](contributing.md )