redux-devtools/packages/redux-devtools-app
Nathan Bierema adff9dd9f9
Refactor extension builds (#1265)
* Update for Edge build

* Refactor builds

* Update permissions

* Update tests
2022-11-07 00:26:12 +00: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 chore(deps): update jest monorepo to v29 (major) (#1149) 2022-10-28 17:15:02 -04:00
jestResolver.js chore(deps): update jest monorepo to v29 (major) (#1149) 2022-10-28 17:15:02 -04:00
LICENSE.md chore(*): move redux-devtools-app to scoped package (#693) 2020-12-22 12:02:14 -05:00
package.json Refactor extension builds (#1265) 2022-11-07 00:26:12 +00: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 Refactor extension builds (#1265) 2022-11-07 00:26:12 +00:00
webpack.config.umd.ts Refactor extension builds (#1265) 2022-11-07 00:26:12 +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