All Projects → YoruNoHikage → redux-devtools-multiple-monitors

YoruNoHikage / redux-devtools-multiple-monitors

Licence: MIT license
Integrate multiple monitors to your redux devtools.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to redux-devtools-multiple-monitors

azure-cli-dev-tools
Developer utilities for Azure CLI command module and extension developers.
Stars: ✭ 62 (+376.92%)
Mutual labels:  devtools
exlcode
EXLcode - VS Code-based Online IDE
Stars: ✭ 42 (+223.08%)
Mutual labels:  devtools
mdebug
基于React开发的新一代web调试工具,支持React组件调试,类似于Chrome Devtools。A Lightweight, Easy To Extend Web Debugging Tool Build With React
Stars: ✭ 237 (+1723.08%)
Mutual labels:  devtools
sfcc-devtools
Support Browser Interaction with VS Code, Eclipse, and SFCC Business Manager via DevTools Web Inspector.
Stars: ✭ 5 (-61.54%)
Mutual labels:  devtools
netlogs
Web extension for debugging your API
Stars: ✭ 16 (+23.08%)
Mutual labels:  devtools
flipper-plugin-relay-devtools
Flipper plugin for Relay devtools
Stars: ✭ 26 (+100%)
Mutual labels:  devtools
nanobox-engine-php
Engine for running PHP apps on Nanobox
Stars: ✭ 20 (+53.85%)
Mutual labels:  devtools
linkedin connect
Configurable and easy to use LinkedIn tool to automate connections with personalized messages.
Stars: ✭ 58 (+346.15%)
Mutual labels:  devtools
devtools-examples
Code examples that accompany the MDN Firefox Developer Tools documentation
Stars: ✭ 22 (+69.23%)
Mutual labels:  devtools
react-render-tracker
React render tracker – a tool to discover performance issues related to unintentional re-renders and unmounts
Stars: ✭ 1,954 (+14930.77%)
Mutual labels:  devtools
devtools-course-theory
Course on Development Tools (in Russian)
Stars: ✭ 18 (+38.46%)
Mutual labels:  devtools
dots
Minimalist developer setup
Stars: ✭ 38 (+192.31%)
Mutual labels:  devtools
useful-forks.github.io
Improving GitHub's Forks list discoverability through automatic filtering. The project offers an online tool and a Chrome extension.
Stars: ✭ 917 (+6953.85%)
Mutual labels:  devtools
rust-cdp
🔨 Chrome DevTools Protocol toolkit for Rust
Stars: ✭ 25 (+92.31%)
Mutual labels:  devtools
wurl
WebSocket curl - The WebSocket CLI for developers
Stars: ✭ 21 (+61.54%)
Mutual labels:  devtools
angular-devtools
Moved to the Angular organization.
Stars: ✭ 261 (+1907.69%)
Mutual labels:  devtools
Fiddler-FPlug
Fiddler Plug,Provide Host Mapping、File Mapping、Header Replace、Https to Http、ServerIP、Disable Cache、vConsole、Console Log、JS Inject
Stars: ✭ 30 (+130.77%)
Mutual labels:  devtools
vscode-advanced-new-file
Create files anywhere in your workspace from the keyboard
Stars: ✭ 68 (+423.08%)
Mutual labels:  devtools
hanzo
Ansible orchestration to configure a development environment -
Stars: ✭ 22 (+69.23%)
Mutual labels:  devtools
nanoinit
A small, proper, init process for docker containers.
Stars: ✭ 43 (+230.77%)
Mutual labels:  devtools

Redux DevTools Multiple Monitors

Integrate multiple monitors to your redux devtools.

npm version

Installation

npm install --save-dev redux-devtools-multiple-monitors

Usage

You can use <MultipleMonitors> to use multiple monitors into the <DockMonitor> for example :

import React from 'react';

import { createDevTools } from 'redux-devtools';
import LogMonitor from 'redux-devtools-log-monitor';
import DockMonitor from 'redux-devtools-dock-monitor';
import Dispatcher from 'redux-devtools-dispatch';
import MultipleMonitors from 'redux-devtools-multiple-monitors';

export default createDevTools(
  <DockMonitor toggleVisibilityKey="ctrl-h" changePositionKey="ctrl-q" defaultIsVisible={false}>
    <MultipleMonitors>
      <LogMonitor />
      <Dispatcher />
    </MultipleMonitors>
  </DockMonitor>
);

Props

Name Description
style If you want to display different monitors in different places, you need to override this property using something like Flexbox

Contributing

As this package is my second (first is redux-devtools-dispatch), any comment, pull request, issue is welcome so I can learn more from everyone.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].