https://github.com/foxhound87/mobx-react-form-devtools
DevTools for MobX React Form
https://github.com/foxhound87/mobx-react-form-devtools
devtools form mobx react
Last synced: 5 months ago
JSON representation
DevTools for MobX React Form
- Host: GitHub
- URL: https://github.com/foxhound87/mobx-react-form-devtools
- Owner: foxhound87
- License: mit
- Created: 2016-10-30T23:04:41.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-07-01T11:35:58.000Z (about 3 years ago)
- Last Synced: 2025-10-13T18:23:56.807Z (9 months ago)
- Topics: devtools, form, mobx, react
- Language: TypeScript
- Size: 613 KB
- Stars: 31
- Watchers: 2
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MobX React Form DevTools
##### DevTools for [MobX React Form](https://github.com/foxhound87/mobx-react-form)
---
[](https://nodei.co/npm/mobx-react-form-devtools/)



[](https://codecov.io/gh/foxhound87/mobx-react-form-devtools)
[]()
[]()


[]()
[]()
---
## Install
```bash
npm install --save mobx-react-form-devtools
```
## Demo
[MobX React Form DevTools Demo](https://foxhound87.github.io/mobx-react-form-demo)
## Usage
```javascript
import MobxReactFormDevTools from 'mobx-react-form-devtools';
// register forms (mobx-react-form Instances)
MobxReactFormDevTools.register({
loginForm,
registerForm,
supportForm,
});
// select form to show into the devtools
MobxReactFormDevTools.select('registerForm');
// open the devtools (closed by default)
MobxReactFormDevTools.open(true);
// render the component
```
## Theme
```javascript
// custom theme colors
MobxReactFormDevTools.theme({
base00: '#2b303b',
base01: '#343d46',
base02: '#4f5b66',
base03: '#65737e',
base04: '#a7adba',
base05: '#c0c5ce',
base06: '#dfe1e8',
base07: '#eff1f5',
base08: '#bf616a',
base09: '#d08770',
base0A: '#ebcb8b',
base0B: '#a3be8c',
base0C: '#96b5b4',
base0D: '#8fa1b3',
base0E: '#b48ead',
base0F: '#ab7967',
});
```
## Screenshot

## Contributing
If you want to contribute to the development, do not hesitate to fork the repo and send pull requests.
And don't forget to star the repo, I will ensure more frequent updates! Thanks!