delorean

A MobX-React Time Travel Debugger

Github星跟踪图

Delorean logo

NPM

Delorean

An intuitive, in-app MobX + React developer tool employing time travel debugging and undo/redo actions. Quickly and easily gain insight into MobX-React projects, in just three easy steps.

Time Travel

Features

  • Flexible time travel functionality
  • Persistent log of every observable action and state change, including individual diffs and complete application state
  • Easy undo/redo of actions without unwanted side effects
  • Alternate timeline debugging. Reverse your application's state and branch into a new timeline with the option of returning to your original state.

Installation

NPM Module

Delorean is easily installed through npm as a developer dependency using your terminal.

npm install mobx-delorean --save-dev

Getting Started

Import DeloreanTools and delorean from the mobx-delorean module.

// in top level React component file
import { DeloreanTools } from 'mobx-delorean';

...

  render() {
    return (
      <div>
        <DeloreanTools />
        <YourComponent />
      <div>
    )
  }
// in MobX store files(s)
import { delorean } from 'mobx-delorean';

...

export default delorean(YourStore, [config]);

####config

  • arguments
    • name (string): the instance name to be shown in the toolbar
    • onlyActions (boolean): if true, Delorean will only track actions. Using MobX in strict mode causes a default to true
    • global (boolean): if true, Delorean will assign dispatching of unhandled actions to this global store
    • filters (object): whitelist or blacklist certain action types using an array of regular expressions as strings
      • whitelist any other actions will be ignored by Delorean
      • blacklist Delorean will ignore this action

Note: Delorean relies on wrapping your MobX store export in order to track its observables and parse its dependency tree at runtime. If you are using multiple stores, you can wrap them separately and Delorean will track them in a singular UI.

Open your MobX app in the browser and notice the Delorean toolbar at the top of your app. In order from left to right:

  1. Time Travel Slider - Click to toggle the time travel slider's visibility. Drag and drop the position marker to traverse through the log of previous application states.

  2. Undo/Redo Actions - Step forward and back through your application's state one action at a time with specific details about each change.

  3. Store Structure Visualizer - Open a new tab with a rich heirarchy visualization of your MobX store's dependency tree. (in development)

主要指标

概览
名称与所有者BrascoJS/delorean
主编程语言JavaScript
编程语言JavaScript (语言数: 2)
平台
许可证Other
所有者活动
创建于2017-01-19 00:36:15
推送于2020-03-08 01:34:29
最后一次提交2018-07-21 10:39:45
发布数0
用户参与
星数249
关注者数6
派生数13
提交数163
已启用问题?
问题数4
打开的问题数3
拉请求数36
打开的拉请求数1
关闭的拉请求数2
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?