Rozenite for Web
Rozenite for Web is an experimental feature. The API and behavior may change in future releases.
Rozenite for Web lets you debug your React Native web app from React Native DevTools — the same plugin panels you use on iOS and Android, in the browser.
You'll need a Chromium-based browser, the Rozenite browser extension, and the @rozenite/web package in your app. It works whether Metro bundles your web app directly, or you use Webpack Dev Server for web.
Install the Chrome extension
- Download the latest extension from the releases page.
- Open Chrome, go to
chrome://extensions, and enable Developer mode (top-right toggle). - Install the extension.
If you get stuck, see Chrome's extension loading guide.
Add @rozenite/web to your app
Installation
Metro-only web configuration
Wrap your Metro config with withRozeniteWeb:
Entry point
Add require('@rozenite/web') to your web entry point — commonly main.tsx or your Expo Router root _layout.tsx. It already gates itself to development, so there's no need to wrap it in __DEV__ yourself.
Webpack configuration
Wrap your Webpack config with withRozeniteWeb:
Web entry point
Use the same entry pattern when using Webpack too.
How to use it
- Start your app in development mode.
- Open the web app in a Chromium-based browser.
- Press
jin the terminal running your app. - New debugging targets should now be available.
- Select the browser tab you want to debug.
Troubleshooting
- Make sure the extension is installed and enabled.
- Make sure your app is running on
localhost. - If you use Metro-only web, make sure
withRozeniteWebis added to Metro andrequire('@rozenite/web')is loaded in your web entry. - If you use Webpack, make sure your config is wrapped with
withRozeniteWeb.
