redux-devtools/packages/redux-devtools-app
renovate[bot] 8300ef0d7b
fix(deps): update all non-major dependencies (#1154)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-05-09 02:27:25 +00:00
..
assets chore(*): move redux-devtools-app to scoped package (#693) 2020-12-22 12:02:14 -05:00
demo Add ESM builds (#997) 2022-01-10 15:41:53 +00:00
src Avoid persisting the selected action between sessions (#1122) 2022-04-03 22:05:14 +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 (#1140) 2022-04-23 04:42:01 +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 fix(deps): update all non-major dependencies (#1154) 2022-05-09 02:27:25 +00:00
README.md Fix @redux-devtools/app README 2022-01-10 13:42:48 -05: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';
import { Root } from '@redux-devtools/app';

ReactDom.render(<Root />, document.getElementById('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