redux-devtools

DevTools for Redux with hot reloading, action replay, and customizable UI

MIT License

Downloads
9.8M
Stars
14K
Committers
119

Bot releases are visible (Hide)

redux-devtools - v2.1.0

Published by gaearon about 9 years ago

  • Adds visibleOnLoad prop that works with the default LogMonitor. You can now write <DevTools store={store} monitor={LogMonitor} visibleOnLoad={false} /> to prevent the monitor from appearing at the page load. It's still available when you press Ctrl+H!
  • Adds deserializer parameter to persistState(). See https://github.com/gaearon/redux-devtools/pull/78#issuecomment-133820206 for a usage example with Immutable.
redux-devtools - v2.0.0

Published by gaearon about 9 years ago

redux-devtools - v1.1.2

Published by gaearon about 9 years ago

redux-devtools - v1.1.1

Published by gaearon about 9 years ago

  • Fix a crash (#83, #84)
redux-devtools - v1.1.0

Published by gaearon about 9 years ago

  • Adds support for displaying Iterables such as Immutable collections and Maps. (#79)
redux-devtools - v1.0.2

Published by gaearon about 9 years ago

  • Minor bugfix to make #35 compatible with #49
redux-devtools - v1.0.1

Published by gaearon about 9 years ago

redux-devtools - v1.0.0

Published by gaearon about 9 years ago

New built-in monitor

Built-in LogMonitor now supports:

  • Tree view;
  • Themes (try theme='bright')
  • Highlighting changed properties.

Thanks to @dzannotti and @nicinabox.

redux-devtools - v0.2.0

Published by gaearon about 9 years ago

  • Updates React Redux dependency to 0.5.0. Shouldn't be a breaking change (even if you use an older version), but bumping minor for some safety.
redux-devtools - v0.1.3

Published by gaearon about 9 years ago

  • When there is an error in reducer, it is now printed to the console
  • “Sweep” now works correctly with monitors that use currentStateIndex
  • Scrollbar is removed when dev tools are hidden
  • You can now pass custom style overrides to DebugPanel
redux-devtools - v0.1.2

Published by gaearon over 9 years ago

  • Add Ctrl+H shortcut to hide/show DevTools while try are mounted
  • Add this.props.setMonitorState and this.props.monitorState to the Monitor contract so monitors can store UI state (potentially across sessions with persistState)
  • Fix replaceReducer call crash (#16)
redux-devtools - v0.1.1

Published by gaearon over 9 years ago

  • Adds this.props.currentStateIndex and this.props.jumpToState to the monitor contract to make it easy to implement slider-like custom monitors
redux-devtools - v0.1.0

Published by gaearon over 9 years ago

  • Initial release for testing and feeback