
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
react-hot-export-loader
Advanced tools
A Webpack loader that automatically inserts react-hot-loader code, Inspired by [react-hot-loader-loader](https://github.com/NoamELB/react-hot-loader-loader)
A Webpack loader that automatically inserts react-hot-loader code, Inspired by react-hot-loader-loader
Skip resources that are not exported to React components, do nothing when process.env.NODE_ENV
npm install react-hot-loader --save-dev
npm install react-hot-export-loader --save-dev
react-hot-loader/babel to your .babelrc// .babelrc
{
"presets": ["@babel/preset-env", "@babel/preset-react"],
"plugins": ["react-hot-loader/babel"]
}
react-hot-export-loader to your webpack configuration (must be before babel-loader)// webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: [
'babel-loader',
'react-hot-export-loader', // <== add this line
],
},
],
},
};
By default react-hot-loader / root exports the hot function as __HOT__, you can set the identifier option to modify the export name.
react-hot-export-loader will automatically inserts react-hot-loader code to the React component code like that:
// before inserts
import React from 'react';
const App = () => {
return (
<h1>Hello World</h1>
);
};
export default App
// after inserts
import 'react-hot-loader';
import { hot as __HOT__ } from 'react-hot-loader/root';
import React from 'react';
const App = () => {
return (
<h1>Hello World</h1>
);
};
export default __HOT__(App);
Array containing the babel plugins that you want to enable.
classProperties babel plugin@babel/plugin-proposal-class-properties to your// /babelrc
{
"presets": ["@babel/preset-env", "@babel/preset-react"],
"plugins": ["react-hot-loader/babel", "@babel/plugin-proposal-class-properties"]
}
classProperties to react-hot-export-loader plugins options// webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: [
'babel-loader',
{
loader: 'react-hot-export-loader',
options: {
plugins: ['classProperties'],
},
}
],
},
],
},
};
The function of filtering the resources you want to automatically add code
// webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: [
'babel-loader',
{
loader: 'react-hot-export-loader',
options: {
filter: (ctx) => {
const { resourcePath } = ctx;
return resourcePath === '/path/to/any/what/you/want';
};
},
}
],
},
],
},
};
MIT
FAQs
A Webpack loader that automatically inserts react-hot-loader code, Inspired by [react-hot-loader-loader](https://github.com/NoamELB/react-hot-loader-loader)
We found that react-hot-export-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.