This tool works with both Expo and React Native CLI projects. Just install and go.
Full Jotai atom inspection for React Native. Monitor atom state changes, explore value diffs, and browse live atom values in real-time — directly on your device.

Every registered atom at a glance — name, type, and live current value. No polling, no wrappers. Values reflect state the moment they change.
npm install @buoy-gg/jotaiCall watchAtoms once at module scope — pass your Jotai store and a named map of your atoms. No wrappers, no middleware, no modifications to existing atoms.
import { getDefaultStore } from 'jotai';
import { watchAtoms } from '@buoy-gg/jotai';
import { countAtom } from './atoms/count';
import { authAtom } from './atoms/auth';
import { cartAtom } from './atoms/cart';
watchAtoms(getDefaultStore(), {
countAtom,
authAtom,
cartAtom,
});
import { getDefaultStore } from 'jotai';
import { watchAtoms } from '@buoy-gg/jotai';
import { countAtom } from './atoms/count';
import { authAtom } from './atoms/auth';
import { cartAtom } from './atoms/cart';
watchAtoms(getDefaultStore(), {
countAtom,
authAtom,
cartAtom,
});
That's it. Registered atoms automatically appear in the Jotai tool inside your FloatingDevTools menu.
Zero config required — Your existing atoms work as-is. No wrappers, no atomWithDevTools, nothing to change.
Browse all registered atoms and their live current value:
Every atom change is captured with rich metadata:
Tap any event to see three detailed tabs:
Atom name, timestamp, category badge, and a diff summary showing which object keys changed.
The full atom value after this change — collapsible JSON tree for objects, raw value for primitives.
Side-by-side comparison of before and after — additions (green), removals (red), modifications (yellow). Choose between tree view or split view.
If your app uses a <Provider> with a custom store, pass it directly:
import { createStore, Provider } from 'jotai';
import { watchAtoms } from '@buoy-gg/jotai';
import { countAtom, authAtom } from './atoms';
const myStore = createStore();
watchAtoms(myStore, { countAtom, authAtom });
export function App() {
return (
<Provider store={myStore}>
<YourApp />
</Provider>
);
}
import { createStore, Provider } from 'jotai';
import { watchAtoms } from '@buoy-gg/jotai';
import { countAtom, authAtom } from './atoms';
const myStore = createStore();
watchAtoms(myStore, { countAtom, authAtom });
export function App() {
return (
<Provider store={myStore}>
<YourApp />
</Provider>
);
}
Each atom gets a consistent color across the Atoms tab, Events tab, and detail views. Colors are assigned automatically based on atom name and persist for the session.
Every event row shows prev → next so you immediately know what changed — no need to tap in for simple updates.
Tap "view history" on any atom in the Atoms tab to see all events scoped to just that atom — useful for tracking a specific piece of state through a flow.
Find events by atom name or value content. Add filter patterns to hide noisy atoms from both the Atoms and Events tabs simultaneously.
Export the full atoms snapshot or event history as JSON for bug reports, test fixtures, or sharing with teammates (Pro).
Pause atom capture when you need to focus, resume when ready.