Storage Plugin
The Storage plugin provides a generic storage inspector for React Native DevTools. It supports multiple adapters and multiple storages per adapter, so you can inspect MMKV, AsyncStorage, and SecureStore in one panel.
Installation
Make sure to go through the Getting Started guide before installing the plugin.
Install the plugin:
Install adapter peer dependencies for the storages you use:
Base Setup
App.tsx
Adapter: MMKV
App.tsx
Limitations
- MMKV v4 arrays are not supported because storage IDs are not readable from instances; pass a record (
{ id: instance }) instead. - Buffer support depends on MMKV runtime behavior and value decoding heuristics.
Adapter: AsyncStorage
App.tsx
Adapter: Expo SecureStore
App.tsx
Limitations
- SecureStore does not provide key enumeration; you must provide known keys via
keys.
Per-Storage Blacklist
Blacklist is configured per storage and matched against the key in that storage.
App.tsx
Next: See MMKV, Network Activity, and Plugin Development.
