https://github.com/rstackjs/rspack-plugin-react-refresh
React refresh plugin for Rspack.
https://github.com/rstackjs/rspack-plugin-react-refresh
react react-refresh rspack rspack-plugin rstack
Last synced: 12 days ago
JSON representation
React refresh plugin for Rspack.
- Host: GitHub
- URL: https://github.com/rstackjs/rspack-plugin-react-refresh
- Owner: rstackjs
- License: mit
- Created: 2024-08-07T09:29:22.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-05-13T13:51:30.000Z (27 days ago)
- Last Synced: 2026-05-13T15:38:14.348Z (27 days ago)
- Topics: react, react-refresh, rspack, rspack-plugin, rstack
- Language: TypeScript
- Homepage:
- Size: 411 KB
- Stars: 19
- Watchers: 5
- Forks: 11
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rstack - @rspack/plugin-react-refresh
README
# @rspack/plugin-react-refresh
React refresh plugin for [Rspack](https://github.com/web-infra-dev/rspack).
## Versions
- `2.x`: For Rspack v2.
- `1.x`: For Rspack v1, see [v1.x - README](https://github.com/rstackjs/rspack-dev-server/tree/v1.x#rspackdev-server) for usage guide.
## Installation
First you need to install this plugin and its dependencies:
```bash
npm add @rspack/plugin-react-refresh react-refresh -D
# or
yarn add @rspack/plugin-react-refresh react-refresh -D
# or
pnpm add @rspack/plugin-react-refresh react-refresh -D
# or
bun add @rspack/plugin-react-refresh react-refresh -D
```
## Import the plugin
Import the plugin in your code:
```js
import { ReactRefreshRspackPlugin } from '@rspack/plugin-react-refresh';
```
## Usage
To enable [React Fast Refresh](https://reactnative.dev/docs/fast-refresh), you need both runtime injection and source transformation.
- This plugin handles runtime injection, including code from [react-refresh](https://www.npmjs.com/package/react-refresh) and the custom runtime it requires.
- Source transformation should be enabled in your loader, for example with [jsc.transform.react.refresh](https://swc.rs/docs/configuration/compilation#jsctransformreactrefresh) in [swc-loader](https://rspack.rs/guide/features/builtin-swc-loader).
```js
import { ReactRefreshRspackPlugin } from '@rspack/plugin-react-refresh';
const isDev = process.env.NODE_ENV === 'development';
export default {
mode: isDev ? 'development' : 'production',
module: {
rules: [
{
test: /\.(?:js|jsx|mjs|cjs|ts|tsx|mts|cts)$/,
use: {
loader: 'builtin:swc-loader',
options: {
detectSyntax: 'auto',
jsc: {
transform: {
react: {
runtime: 'automatic',
development: isDev,
refresh: isDev,
},
},
},
},
},
},
],
},
plugins: [isDev && new ReactRefreshRspackPlugin()],
};
```
Compared to the previous approach, this method decouples the React Fast Refresh code injection logic from the transformation logic. The code injection logic is handled uniformly by this plugin, while the code transformation is handled by loaders. This means that this plugin can be used in conjunction with `builtin:swc-loader`, `swc-loader`, or `babel-loader`.
## Example
- For usage with `builtin:swc-loader`, you can refer to the example at [examples/react-refresh](https://github.com/rstackjs/rstack-examples/blob/main/rspack/react-refresh/rspack.config.js), When using with `swc-loader`, simply replace `builtin:swc-loader` with `swc-loader`.
- For usage with `babel-loader`, you can refer to the example at [examples/react-refresh-babel-loader](https://github.com/rstackjs/rstack-examples/blob/main/rspack/react-refresh-babel-loader/rspack.config.js)
## Options
### test
- Type: [Rspack.RuleSetCondition](https://rspack.rs/config/module-rules#condition)
- Default: `/\.(?:js|jsx|mjs|cjs|ts|tsx|mts|cts)$/`
Specifies which files should be processed by the React Refresh loader. This option is passed to the `builtin:react-refresh-loader` as the `rule.test` condition.
Works identically to Rspack's [rule.test](https://rspack.rs/config/module-rules#rulestest) option.
```js
new ReactRefreshPlugin({
test: [/\.jsx$/, /\.tsx$/],
});
```
### include
- Type: [Rspack.RuleSetCondition](https://rspack.rs/config/module-rules#condition)
- Default: `undefined`
Explicitly includes files to be processed by the React Refresh loader. This option is passed to the `builtin:react-refresh-loader` as the `rule.include` condition.
Use this to limit processing to specific directories or file patterns.
Works identically to Rspack's [rule.include](https://rspack.rs/config/module-rules#rulesinclude) option.
```js
new ReactRefreshPlugin({
include: [/\.jsx$/, /\.tsx$/],
});
```
### exclude
- Type: [Rspack.RuleSetCondition](https://rspack.rs/config/module-rules#condition)
- Default: `/node_modules/`
Exclude files from being processed by the plugin. The value is the same as the [rule.exclude](https://rspack.rs/config/module-rules#rulesexclude) option in Rspack.
```js
new ReactRefreshPlugin({
exclude: [/node_modules/, /some-other-module/],
});
```
### resourceQuery
- Type: [Rspack.RuleSetCondition](https://rspack.rs/config/module-rules#condition)
- Default: `undefined`
Can be used to exclude certain resources from being processed by the plugin by the resource query. The value is the same as the [rule.resourceQuery](https://rspack.rs/config/module-rules#rulesresourcequery) option in Rspack.
For example, to exclude all resources with the `raw` query, such as `import rawTs from './ReactComponent.ts?raw';`, use the following:
```js
new ReactRefreshPlugin({
resourceQuery: { not: /raw/ },
});
```
### forceEnable
- Type: `boolean`
- Default: `false`
Whether to force enable the plugin.
By default, the plugin will not be enabled in non-development environments. If you want to force enable the plugin, you can set this option to `true`.
```js
new ReactRefreshPlugin({
forceEnable: true,
});
```
It is useful if you want to:
- Use the plugin in production.
- Use the plugin with the `none` mode without setting `NODE_ENV`.
- Use the plugin in environments we do not support, such as `electron-prerender` (**WARNING: Proceed at your own risk**).
### library
- Type: `string`
- Default: `output.uniqueName || output.library`
Sets a namespace for the React Refresh runtime.
It is most useful when multiple instances of React Refresh is running together simultaneously.
### reloadOnRuntimeErrors
- Type: `boolean`
- Default: `false`
Config the plugin whether trigger a full page reload when an unrecoverable runtime error is encountered.
Currently, only module factory undefined error is considered as unrecoverable runtime error.
```js
new ReactRefreshPlugin({
reloadOnRuntimeErrors: true,
});
```
### reactRefreshLoader
- Type: `string`
- Default: `builtin:react-refresh-loader`
By default, the plugin uses the `builtin:react-refresh-loader` loader implementation [from Rspack](https://github.com/web-infra-dev/rspack/tree/main/crates/rspack_loader_react_refresh) to inject the React Refresh utilities into each module. The `reactRefreshLoader` option allows you to specify a loader that implements custom React Refresh instrumentation if needed.
```js
new ReactRefreshPlugin({
reactRefreshLoader: 'my-advanced-react-refresh-loader',
});
```
## Credits
Thanks to the [react-refresh-webpack-plugin](https://github.com/pmmmwh/react-refresh-webpack-plugin) created by [@pmmmwh](https://github.com/pmmmwh), which inspires implement this plugin.
## License
`@rspack/plugin-react-refresh` is [MIT licensed](https://github.com/web-infra-dev/rspack/blob/main/LICENSE).