Skip to content

mobx-devtools/mobx-devtools-pro

 
 

Repository files navigation

MobX Devtools Pro

The official MobX Devtools enhanced version.

This repository is home for:

MobX Devtools Pro vs MobX Devtool

Features MobX Devtools Pro MobX Devtool
Track action
Computed view
State view
Diff view
Inspect mobx-react(mobx-react-lite) observers
MST support

And MobX Devtools Pro has a better user experience.

Usage

  1. Install @mobx-devtools/tools package
npm i @mobx-devtools/tools
  1. Inject app's stores for Diff and State features
import { StoreA, StoreB } from './stores';
import { injectStores } from '@mobx-devtools/tools';

const storeA = new StoreA();
const storeB = new StoreB();

injectStores({
  storeA,
  storeB,
});

export const App = () => {
  // ...
};
  1. Start your mobx debug tour!

Screenshot

Action

Diff

State

Hacking

Check the HACKING.md.

About

The official Mobx Devtools enhanced version.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 67.4%
  • TypeScript 31.2%
  • HTML 1.4%