Socket
Socket
Sign inDemoInstall

@pmmmwh/react-refresh-webpack-plugin

Package Overview
Dependencies
224
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @pmmmwh/react-refresh-webpack-plugin

An **EXPERIMENTAL** Webpack plugin to enable "Fast Refresh" (also previously known as _Hot Reloading_) for React components.


Version published
Weekly downloads
5.2M
decreased by-21.57%
Maintainers
1
Install size
15.9 MB
Created
Weekly downloads
 

Package description

What is @pmmmwh/react-refresh-webpack-plugin?

The @pmmmwh/react-refresh-webpack-plugin npm package enables hot reloading of React components in webpack without losing their state. This is particularly useful during development as it allows developers to see changes in real-time without a full page reload.

What are @pmmmwh/react-refresh-webpack-plugin's main functionalities?

Hot Module Replacement (HMR) for React components

This feature allows React components to be updated in the browser without a full page reload, preserving their state. The code sample shows how to include the plugin in a webpack configuration.

const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');

module.exports = {
  // ... other webpack config settings ...
  plugins: [
    // ... other plugins ...
    new ReactRefreshWebpackPlugin(),
  ],
};

Other packages similar to @pmmmwh/react-refresh-webpack-plugin

Changelog

Source

0.1.1 (13 December 2019)

Fixes

  • Fixed usage of WDS SockJS fallback (#17)

Readme

Source

React Refresh Webpack Plugin

An EXPERIMENTAL Webpack plugin to enable "Fast Refresh" (also previously known as Hot Reloading) for React components.

Installation

First - this plugin is not 100% stable. It works pretty reliably, and we have been testing it for some time, but there are still edge cases yet to be discovered. Please DO NOT use it if you cannot afford to face breaking changes in the future.

# if you prefer npm
npm install -D @pmmmwh/react-refresh-webpack-plugin react-refresh

# if you prefer yarn
yarn add -D @pmmmwh/react-refresh-webpack-plugin react-refresh

Usage

First, apply the plugin in your Webpack configuration as follows:

webpack.config.js

const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
// ... your other imports

module.exports = {
  // It is suggested to run the plugin in development mode only
  mode: 'development',
  // ... other configurations
  plugins: [
    // ... other plugins
    // You could also keep the plugin in your production config,
    // It will simply do nothing.
    new ReactRefreshWebpackPlugin(),
  ],
};

Then, update your Babel configuration. This can either be done in your Webpack config (via options of babel-loader), or in the form of a .babelrc/babel.config.js.

webpack.config.js (if you choose to inline the config)

module.exports = {
  // DO NOT apply the plugin in production mode!
  mode: 'development',
  module: {
    rules: [
      // ... other rules
      {
        // for TypeScript, change the following to "\.[jt]sx?"
        test: /\.jsx?$/,
        exclude: /node_modules/,
        use: [
          // ... other loaders
          {
            loader: require.resolve('babel-loader'),
            options: {
              // ... other options
              // DO NOT apply the Babel plugin in production mode!
              plugins: [require.resolve('react-refresh/babel')],
            },
          },
        ],
      },
    ],
  },
};

.babelrc.js (if you choose to extract the config)

module.exports = api => {
  // This caches the Babel config.
  api.cache.using(() => process.env.NODE_ENV);
  return {
    // ... other options
    plugins: [
      // ... other plugins
      // Applies the react-refresh Babel plugin on development modes only
      ...(api.env('development') ? ['react-refresh/babel'] : []),
    ],
  };
};

Options

This plugin accepts a few options that are specifically targeted for advanced users. The allowed values are as follows:

NameTypeDefaultDescription
disableRefreshCheckbooleanfalseDisables detection of react-refresh's Babel plugin. Useful if you do not parse JS files within node_modules, or if you have a Babel setup not entirely controlled by Webpack.
forceEnablebooleanfalseEnables the plugin forcefully. Useful if you want to use the plugin in production, for example.
  • Initial Implementation by @maisano

Keywords

FAQs

Last updated on 13 Dec 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc