Storage Plugin
The Storage plugin is a single DevTools panel for MMKV, AsyncStorage, and Expo SecureStore. Register whichever adapters your app uses and inspect them all from one place.
Installation
Make sure to go through the Getting Started guide before installing the plugin.
Install the peer dependencies for the storages you use:
Setup
Web (React Native for Web)
With Rozenite for Web, this plugin is also available when debugging your React Native web app — showing entries from whichever Async Storage / Expo Secure Store adapters you configure for the browser.
Adapters
MMKV
MMKV v4 arrays aren't supported — pass a record ({ id: instance }) instead.
AsyncStorage
Expo SecureStore
SecureStore doesn't support key enumeration, so you provide known keys via keys.
Binary values
MMKV storages that hold binary values render and edit them through a hex viewer with a Base64 mode for copy/paste. AsyncStorage and Expo SecureStore don't support binary values.
Hiding sensitive keys
blacklist is configured per storage and matched against the key in that storage:
Large storages
The panel loads entries in bounded, key-sorted pages with value previews only — it doesn't read your whole storage up front. Search runs on the device before pagination. Open an entry to load its full value; closing it, switching storage, or refreshing discards that loaded value again.
Storages with native subscriptions (like MMKV) update live. Others don't poll — use Refresh to pick up external changes.
Import / export
Export the currently selected storage to a JSON snapshot, and import one back — handy for reproducing a bug from a captured state or sharing a scenario with a teammate.
- Import and export always target the currently selected storage — switch the dropdown first to target a different one.
- Import is an upsert: existing keys are overwritten, missing keys are created, keys not in the file are left alone. There's no "replace all".
- The file is validated before anything is written. If validation fails, nothing changes.
- Keys matching the target storage's
blacklistare skipped, and the preview shows you which ones before you apply.
Exports are versioned (version: 1 today); a mismatched version is rejected rather than silently coerced.
Next: See Network Activity and Plugin Development.
