Experiment: interactive mobx state exploration

Explore, modify and call action functions on any mobx data models. Maybe useful for:

  • Debugging
  • Displaying/interacting with state model without having views implementation

Usage example:

import explore from 'mobx-state-explorer';

let todoList = new TodoList;

explore(todoList);