redux-devtools/packages/redux-devtools-app
renovate[bot] beb02ebe6d
chore(deps): update all non-major dependencies (#921)
* chore(deps): update all non-major dependencies

* Combine react types

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
2021-11-01 13:59:32 +00:00
..
assets chore(*): move redux-devtools-app to scoped package (#693) 2020-12-22 12:02:14 -05:00
demo chore(*): move redux-devtools-app to scoped package (#693) 2020-12-22 12:02:14 -05:00
src chore(deps): update typescript-eslint monorepo to v5 (major) (#907) 2021-10-21 19:08:35 +00:00
test Replace enzyme with React testing library in app and extension (#918) 2021-10-22 14:49:53 +00:00
.babelrc chore(*): clean up babel configs (#816) 2021-08-29 23:25:48 +00:00
.eslintignore chore(*): move redux-devtools-app to scoped package (#693) 2020-12-22 12:02:14 -05:00
.eslintrc.js chore(*): move devDependencies back to packages (#870) 2021-09-18 23:47:03 +00:00
CHANGELOG.md chore(*): run prettier 2021-06-10 23:42:46 -04:00
jest.config.js fix(extension): fix code editor styles (#817) 2021-08-30 01:32:29 +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 (#921) 2021-11-01 13:59:32 +00:00
README.md chore(*): move redux-devtools-app to scoped package (#693) 2020-12-22 12:02:14 -05:00
tsconfig.demo.json fix(extension): fix types (#822) 2021-08-30 04:54:35 +00:00
tsconfig.json fix(extension): fix types (#822) 2021-08-30 04:54:35 +00:00
tsconfig.webpack.json chore(*): move redux-devtools-app to scoped package (#693) 2020-12-22 12:02:14 -05:00
webpack.config.ts fix(extension): fix types (#822) 2021-08-30 04:54:35 +00:00
webpack.config.umd.ts chore(deps): update dependency webpack to v5 (#788) 2021-08-29 04:09:37 +00:00

Redux DevTools monitor app

Demo

Web, Electron and Chrome app for monitoring remote-redux-devtools. Can be accessed on remotedev.io.

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 DevToolsApp from '@redux-devtools/app';

ReactDom.render(<App />, 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