
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@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 30,859 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.