This repository is home for:
- MobX Developer Tools (Advanced) for Chrome (not yet released)
- MobX Developer Tools (Advanced) for Firefox (not yet released)
- Standalone app for Safari, IE etc.
This fork is in early development, so some of this readme content may be incorrect. XD
At the moment, follow this page to install locally: Hacking
- Inspect mobx-react observers. Edit values in observable objects. (Doesn't support editing react props/state, use react-devtools for that)
- Track changes in MobX observables
- MST support (see below).
TODO
To allow inspecting MST root, do npm install mobx-devtools-mst-advanced
and pass it to the function, exported as the default:
import makeInspectable from 'mobx-devtools-mst-advanced';
const myStore = MyStore.create(/* ... */);
makeInspectable(myStore);
Install:
npm install --global mobx-devtools-advanced
Start:
mobx-devtools-advanced
Make sure that you are using mobx 3.1.15 or higher and your app does not live inside an iframe. If that doesn't help, please create an issue with detail about your environment.
They appear only when you are using mobx-react 4.2.2 or higher;
- Hacking: How to make local changes.
- TreeTraversal: Documentation on how to traverse the tree of React components.