Skip to content

mobxjs/mobx-devtools

Folders and files

NameName
Last commit message
Last commit date
Dec 4, 2024
Dec 6, 2024
Dec 4, 2024
Dec 4, 2024
Sep 19, 2024
Oct 27, 2024
Oct 27, 2024
Dec 6, 2020
Oct 27, 2024
Mar 9, 2019
Nov 6, 2017
Oct 20, 2017
Jun 15, 2018
Sep 18, 2024
Oct 18, 2020
Oct 15, 2020
Sep 18, 2024
Oct 27, 2024
Oct 27, 2024
Aug 29, 2015
Oct 27, 2024
Oct 15, 2020
Dec 4, 2024
Oct 27, 2024
Oct 27, 2024
Oct 27, 2017
Oct 20, 2017

Repository files navigation

mobx-devtools

Build Status

This repository is home for:

MobX DevTools

Features

  • 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

Troubleshooting

It doesn't work

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.

Performance & Components tabs [DEPRECATED].

Prefer use React Devtools extension for components tree and performance discuss

Hacking

Check the HACKING.md.