npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mobx-formkit-devtools

v1.0.0

Published

DevTools for MobX FormKit — in-app dock SDK and browser extension

Readme

MobX FormKit DevTools

DevTools for MobX FormKit — a browser extension (Chrome / Firefox / Edge) plus an in-app dock SDK.

[!NOTE] The devtools are opt-in: they only activate on pages that import mobx-formkit/devtools.

Prerequisites

The page under inspection must install the devtools hook. Import it before creating your forms (e.g. at the top of the client entry):

import 'mobx-formkit/devtools';

Build

npm install
npm run build:ext

This produces the unpacked extensions in extension/dist/{chrome,firefox,edge}.

Install

Chrome

  1. Open chrome://extensions.
  2. Enable Developer mode (top-right toggle).
  3. Click Load unpacked.
  4. Select extension/dist/chrome.

Edge

  1. Open edge://extensions.
  2. Enable Developer mode.
  3. Click Load unpacked.
  4. Select extension/dist/edge.

Firefox

  1. Open about:debugging#/runtime/this-firefox.
  2. Click Load Temporary Add-on….
  3. Select extension/dist/firefox/manifest.json.

Dev-mode shortcut (build + launch in one command): npm run dev:chrome · npm run dev:firefox · npm run dev:edge

How to use

  1. Open a page that imports mobx-formkit/devtools.
  2. Open DevTools (F12 / Cmd+Opt+I).
  3. Go to the "MobX FormKit" panel (overflow menu » if hidden).
  4. Pick a form from the selector and inspect it:
    • Form — form-level props
    • Options — toggle boolean form options (search + grouped)
    • Values — current field values
    • Fields — full field snapshots
    • Helpers — errors, labels, placeholders, defaults, rules, bindings, …
    • Controls: Submit / Validate / Reset / Clear

The panel updates live (per-form) and shows a connection status dot in the top-right corner.

In-app dock (SDK)

The in-app dock is shipped per engine — React is exposed via the /react subpath.

npm i mobx-formkit-devtools
import DevTools from 'mobx-formkit-devtools/react';
import forms from './forms';

DevTools.register(forms);   // register your forms ({ name: form })
DevTools.select('login');   // select a form (optional)
DevTools.open(true);        // open the dock

function App() {
  return (
    <>
      <DevTools.UI />        {/* render the dock once, at the app root */}
      {/* your app */}
    </>
  );
}

API:

  • DevTools.UI — the dock component (render it once, at the app root).
  • DevTools.register(forms) — register an object of forms ({ name: form }).
  • DevTools.select(key) — select a form by key.
  • DevTools.open(flag) — open/close the dock.
  • DevTools.Options — the form-options component.
  • DevTools.theme({ … }) — override the color theme.

The React SDK expects these peer dependencies (install them alongside):

  • react / react-dom
  • mobx (^6.12 || ^7)
  • mobx-react
  • mobx-formkit (the form library; the legacy mobx-react-form name is also supported)

License

MIT