redux-devtools/packages/redux-devtools-app
renovate[bot] c9589c0307
chore(deps): update all non-major dependencies (#1186)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-19 21:12:23 -04:00
..
assets chore(*): move redux-devtools-app to scoped package (#693) 2020-12-22 12:02:14 -05:00
demo fix(deps): update react (major) (#1165) 2022-06-06 16:22:05 +00:00
src chore(deps): update socketcluster to v16 (major) (#1167) 2022-06-13 11:35:11 +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 Version Packages (#1181) 2022-05-30 17:22:06 +00: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(*): move redux-devtools-app to scoped package (#693) 2020-12-22 12:02:14 -05:00
package.json chore(deps): update all non-major dependencies (#1186) 2022-06-19 21:12:23 -04:00
README.md fix(deps): update react (major) (#1165) 2022-06-06 16:22:05 +00:00
tsconfig.demo.json Use types in tscnofig to explicitly define global types (#1045) 2022-01-22 21:51:27 +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
tsconfig.webpack.json Use types in tscnofig to explicitly define global types (#1045) 2022-01-22 21:51:27 +00:00
webpack.config.ts Use asset resources in redux-devtools-app Webpack builds (#1019) 2022-01-16 14:37:49 +00:00
webpack.config.umd.ts Use asset resources in redux-devtools-app Webpack builds (#1019) 2022-01-16 14:37:49 +00:00

Redux DevTools monitor app

Demo

Web, Electron and Chrome app for monitoring remote-redux-devtools.

Also it's a react component you can use to build amazing monitor applications like:

Usage

import React from 'react';
import ReactDOM from 'react-dom/client';
import { Root } from '@redux-devtools/app';

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<Root />);

Parameters

  • socketOptions - object used to specify predefined options for the connection:
    • hostname - string
    • port - number or string
    • autoReconnect - boolean
    • secure - boolean.
  • monitorOptions - object used to specify predefined monitor options:
    • selected - string - which monitor is selected by default. One of the following values: LogMonitor, InspectorMonitor, ChartMonitor.
  • testTemplates - array of strings representing predefined test templates.
  • noSettings - boolean set to true in order to hide settings button and dialog.

License

MIT