Skip to main content

Open In Editor

The openInEditor plugin allows you to click on a line of code in Reactotron and have it open in your editor.

Configuration

To use the openInEditor plugin, add the additional plugin on the import line.

import Reactotron, { openInEditor } from "reactotron-react-native"

Next, add it as a plugin to Reactotron.

Reactotron.configure()
.use(openInEditor()) // <--- here we go!
.connect()