eddyerburgh / react-dev-tools-iframe-webpack-plugin

Inject code to set up React dev tools for code running in an iframe

Repository from Github https://github.comeddyerburgh/react-dev-tools-iframe-webpack-pluginRepository from Github https://github.comeddyerburgh/react-dev-tools-iframe-webpack-plugin

react-dev-tools-iframe-webpack-plugin

By default, React apps running in iframes are not picked up by the React dev tools extension.

For dev tools to pick up React apps in iframes, you need to add code that sets the dev tools hook to the parent window, but the code must run before the React code runs. The must be added outside your bundle if you use ES imports (which are hoisted).

This plugin adds the code to set the dev tools hook before the React code runs.

Usage

Install:

yarn add --dev react-dev-tools-iframe-webpack-plugin

or with npm:

npm install --save-dev react-dev-tools-iframe-webpack-plugin

And add it to your plugins array in the webpack config:

const ReactDevToolsIFramePlugin = require('react-dev-tools-iframe-webpack-plugin');

module.exports = {
  // ..
  plugins: [new ReactDevToolsIFramePlugin()]
};

About

Inject code to set up React dev tools for code running in an iframe

License:MIT License


Languages

Language:JavaScript 100.0%