/mobx-devtools

Mobx Devtools (React, Chrome Extension)

Primary LanguageJavaScriptMIT LicenseMIT

mobx-devtools

This repository is home for:

MobX DevTools

Features

  • 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).

mobx-state-tree

To allow inspecting MST root, do npm install mobx-devtools-mst and pass it to the function, exported as the default:

import makeInspectable from 'mobx-devtools-mst';

const myStore = MyStore.create(/* ... */);

makeInspectable(myStore);

MobX DevTools MST

Standalone app

Install:

npm install --global mobx-devtools

Start:

mobx-devtools

Requirements

Should fail gracefully if using unsupported versions.

Hacking

Check the HACKING.md.