Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mobxjs/mobx-devtools
Mobx Devtools (React, Chrome Extension) - Looking for maintainers! https://github.com/mobxjs/mobx-devtools/issues/55
https://github.com/mobxjs/mobx-devtools
Last synced: 2 days ago
JSON representation
Mobx Devtools (React, Chrome Extension) - Looking for maintainers! https://github.com/mobxjs/mobx-devtools/issues/55
- Host: GitHub
- URL: https://github.com/mobxjs/mobx-devtools
- Owner: mobxjs
- License: mit
- Created: 2017-09-19T10:20:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-06T14:21:16.000Z (about 2 months ago)
- Last Synced: 2025-01-17T00:02:24.592Z (9 days ago)
- Language: JavaScript
- Homepage:
- Size: 2.18 MB
- Stars: 491
- Watchers: 11
- Forks: 35
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome - mobx-devtools - Mobx Devtools (React, Chrome Extension) - Looking for maintainers! https://github.com/mobxjs/mobx-devtools/issues/55 (JavaScript)
README
# mobx-devtools
[![Build Status](https://travis-ci.org/mobxjs/mobx-devtools.svg?branch=master)](https://travis-ci.org/mobxjs/mobx-devtools)
This repository is home for:
- [MobX Developer Tools for **Chrome**](https://chrome.google.com/webstore/detail/mobx-developer-tools/pfgnfdagidkfgccljigdamigbcnndkod)
- [MobX Developer Tools for **Firefox**](https://addons.mozilla.org/en-US/firefox/addon/mobx-devtools/)
- [Standalone app](#standalone-app) for Safari, IE etc.![MobX DevTools](preview.gif)
#### 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:
```js
import makeInspectable from 'mobx-devtools-mst';const myStore = MyStore.create(/* ... */);
makeInspectable(myStore);
```![MobX DevTools MST](preview-mst.png)
#### Standalone app
Install:
```sh
npm install --global mobx-devtools
```Start:
```sh
mobx-devtools
```# Troubleshooting
### It doesn't work
Make sure that you are using [mobx](https://www.npmjs.com/package/mobx) 3.1.15 or higher and your app does not live inside an iframe. If that doesn't help, please [create an issue](https://github.com/mobxjs/mobx-devtools/issues/new) with detail about your environment.
### Performance & Components tabs [DEPRECATED].
Prefer use React Devtools extension for components tree and performance [discuss](https://github.com/mobxjs/mobx-devtools/issues/56#issuecomment-541896923)
# Hacking
Check the [HACKING.md](HACKING.md).