
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@rozenite/mmkv-plugin
Advanced tools

The Rozenite MMKV Plugin provides real-time storage inspection, data visualization, and management capabilities for MMKV instances within your React Native DevTools environment.

Install the MMKV plugin as a dependency:
npm install @rozenite/mmkv-plugin
Note: This plugin requires react-native-mmkv as a peer dependency. Make sure you have it installed:
npm install react-native-mmkv
npm install @rozenite/mmkv-plugin react-native-mmkv
Add the DevTools hook to your React Native app and provide your MMKV instances:
// App.tsx
import { MMKV } from 'react-native-mmkv';
import { useMMKVDevTools } from '@rozenite/mmkv-plugin';
// Create your MMKV instances
const userStorage = new MMKV({ id: 'user-storage' });
const appSettings = new MMKV({ id: 'app-settings' });
const cacheStorage = new MMKV({ id: 'cache-storage' });
function App() {
// Enable MMKV DevTools with your storage instances
useMMKVDevTools({
storages: [userStorage, appSettings, cacheStorage],
});
return <YourApp />;
}
With blacklist filtering:
function App() {
// Enable MMKV DevTools with RegExp blacklist for sensitive/large data
useMMKVDevTools({
storages: [userStorage, appSettings, cacheStorage],
blacklist: /cache-storage:.*Binary.*|user-storage:sensitiveToken|.*:temp.*/,
});
return <YourApp />;
}
Start your development server and open React Native DevTools. You'll find the "MMKV Storage" panel in the DevTools interface.
Important Note: You must explicitly provide all MMKV instances you want to inspect to the useMMKVDevTools hook. The plugin cannot automatically detect MMKV instances - only the storages you pass in the storages array will be available in the DevTools interface.
The MMKV plugin supports filtering out specific properties using regex patterns. This is useful for:
The blacklist parameter accepts a JavaScript RegExp object matched against {storageId}:{key} format:
useMMKVDevTools({
storages: [userStorage, cacheStorage],
blacklist: /cache-storage:.*Binary.*|user-storage:sensitiveToken|.*:temp.*/,
});
This RegExp will hide:
cache-storage:.*Binary.*)user-storage:sensitiveToken).*:temp.*)The | character is the regex OR operator to combine multiple patterns.
Once you've provided your MMKV instances to the plugin, it provides:
rozenite is an open source project and will always remain free to use. If you think it's cool, please star it 🌟.
Callstack is a group of React and React Native geeks, contact us at hello@callstack.com if you need any help with these or just want to say hi!
Like the project? ⚛️ Join the team who does amazing stuff for clients and drives React Native Open Source! 🔥
FAQs
MMKV for Rozenite.
The npm package @rozenite/mmkv-plugin receives a total of 12,670 weekly downloads. As such, @rozenite/mmkv-plugin popularity was classified as popular.
We found that @rozenite/mmkv-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.