redux-devtools/packages/redux-devtools-inspector-monitor-trace-tab
renovate[bot] df059f9459
chore(deps): update dependency eslint-plugin-jest to v26 (#1064)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-01-29 15:14:25 +00:00
..
src Imprrove ability to tree-shake libraries (#1050) 2022-01-24 02:11:46 +00:00
test Use types in tscnofig to explicitly define global types (#1045) 2022-01-22 21:51:27 +00:00
.eslintignore Imprrove ability to tree-shake libraries (#1050) 2022-01-24 02:11:46 +00:00
.eslintrc.js Use types in tscnofig to explicitly define global types (#1045) 2022-01-22 21:51:27 +00:00
babel.config.esm.json Imprrove ability to tree-shake libraries (#1050) 2022-01-24 02:11:46 +00:00
babel.config.json Imprrove ability to tree-shake libraries (#1050) 2022-01-24 02:11:46 +00:00
CHANGELOG.md chore(*): run prettier 2021-06-10 23:42:46 -04:00
jest.config.js Use types in tscnofig to explicitly define global types (#1045) 2022-01-22 21:51:27 +00:00
LICENSE.md chore(trace): rename trace-monitor to trace-tab (#650) 2020-10-04 00:11:22 -04:00
package.json chore(deps): update dependency eslint-plugin-jest to v26 (#1064) 2022-01-29 15:14:25 +00:00
README.md Add ESM builds (#997) 2022-01-10 15:41:53 +00:00
rollup.config.js Add ESM builds (#997) 2022-01-10 15:41:53 +00:00
tsconfig.json Imprrove ability to tree-shake libraries (#1050) 2022-01-24 02:11:46 +00:00
tsconfig.test.json Use types in tscnofig to explicitly define global types (#1045) 2022-01-22 21:51:27 +00:00

Redux DevTools Stack Trace Monitor

Submonitor for Redux DevTools inspector to show stack traces. Based on react-error-overlay and the contribution of Mark Erikson in the PR from remotedev-app.

It's integrated in Redux DevTools browser extension. To use it separately with redux-devtools and redux-devtools-inspector-monitor according to Walkthrough:

containers/DevTools.js
import React from 'react';
import { createDevTools } from '@redux-devtools/core';
import { InspectorMonitor } from '@redux-devtools/inspector-monitor';
import { TraceTab } from '@redux-devtools/inspector-monitor-trace-tab';

export default createDevTools(
  <InspectorMonitor
    tabs: defaultTabs => [...defaultTabs, { name: 'Trace', component: TraceTab }]
  />
);
store/configureStore.js
// ...
const enhancer = compose(
  // ...
  DevTools.instrument({ trace: true })
);
// ...

License

MIT