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.
Don't take our word for it — this is the real tool on mock checkout atoms. The guided tour below walks one debugging story: atoms update as the app runs, applyPromo wipes cart.total, you read prev → next and the on-device diff, then Clear the log and the broken value is still sitting on Atoms. Or skip the tour and just start tapping:
Not a video — this is the shipped tool on mock data. cart, auth.session, and user.profile update as every write lands — no wrappers, no polling.
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.
Install @buoy-gg/jotai and register your atoms — they appear in the on-device browser with live values, write history, and diffs.