目前我正努力让HMR在我的Webpack 2设置中工作。我将解释我的整个设置,所以我希望这足以让某人了解正在发生的事情。
我的项目结构:
config
dev.js
prod.js
dist
css
js
index.html
node_modules
src
components
// some JavaScript components
shared
stylesheets
index.js
.babelrc
package.json
webpack.config.js
这是我的webpack.config.js
文件的内容,放在项目的根目录中:
function buildConfig(env) {
return require('./config/' + env + '.js')(env)
}
module.exports = buildConfig;
因此,在此文件中,我可以选择将不同的环境传递给buildConfig
函数。我使用此选项来使用不同的配置文件进行开发和生产。这是我package.json
文件中的内容:
{
"main": "index.js",
"scripts": {
"build:dev": "node_modules/.bin/webpack-dev-server --env=dev",
"build:prod": "node_modules/.bin/webpack -p --env=prod"
},
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.24.1",
"babel-loader": "^6.2.5",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^2.1.0",
"json-loader": "^0.5.4",
"node-sass": "^3.13.1",
"postcss-loader": "^1.3.3",
"postcss-scss": "^0.4.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"babel-plugin-react-css-modules": "^2.6.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-icons": "^2.2.1"
}
}
我当然在package.json
中有更多字段,但我不会在这里显示它们,因为它们无关紧要。
因此在开发过程中,我在终端中运行npm run build:dev
命令。这将使用dev.js
文件夹中的文件config
。这是dev.js
文件的内容:
const webpack = require('webpack');
const { resolve } = require('path');
const context = resolve(__dirname, './../src');
module.exports = function(env) {
return {
context,
entry: {
app: [
'react-hot-loader/patch',
// activate HMR for React
'webpack-dev-server/client?http://localhost:3000',
// bundle the client for webpack-dev-server
// and connect to the provided endpoint
'webpack/hot/only-dev-server',
// bundle the client for hot reloading
// only- means to only hot reload for successful updates
'./index.js'
// the entry point of our app
]
},
output: {
path: resolve(__dirname, './../dist'), // `dist` is the destination
filename: '[name].js',
publicPath: '/js'
},
devServer: {
hot: true, // enable HMR on the server
inline: true,
contentBase: resolve(__dirname, './../dist'), // `__dirname` is root of the project
publicPath: '/js',
port: 3000
},
devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.js$/, // Check for all js files
exclude: /node_modules/,
use: [{
loader: 'babel-loader',
query: {
presets: ['latest', 'react'],
plugins: [
[
"react-css-modules",
{
context: __dirname + '/../src', // `__dirname` is root of project and `src` is source
"generateScopedName": "[name]__[local]___[hash:base64]",
"filetypes": {
".scss": "postcss-scss"
}
}
]
]
}
}]
},
{
test: /\.scss$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
sourceMap: true,
modules: true,
importLoaders: 2,
localIdentName: '[name]__[local]___[hash:base64]'
}
},
'sass-loader',
{
loader: 'postcss-loader',
options: {
plugins: () => {
return [
require('autoprefixer')
];
}
}
}
]
}
]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
// enable HMR globally
new webpack.NamedModulesPlugin()
// prints more readable module names in the browser console on HMR updates
]
}
};
最后但并非最不重要的是,我的HMR设置。我在index.js
文件中进行了此设置:
import React from 'react';
import ReactDOM from 'react-dom';
import { AppContainer } from 'react-hot-loader';
import TodoApp from './components/TodoApp';
import './stylesheets/Stylesheets.scss';
const render = (Component) => {
ReactDOM.render(
<AppContainer>
<Component />
</AppContainer>,
document.querySelector('#main')
);
};
render(TodoApp);
// Hot Module Replacement API
if (module.hot) {
module.hot.accept('./components/TodoApp', () => {
render(TodoApp)
});
}
因此,当我在浏览器中运行npm start build:dev
并转到http://localhost:3000
时,我看到我的网站按预期工作。这是控制台中的输出:
dev-server.js:49 [HMR] Waiting for update signal from WDS...
only-dev-server.js:66 [HMR] Waiting for update signal from WDS...
TodoApp.js:102 test
client?344c:41 [WDS] Hot Module Replacement enabled.
test
文本来自我的TodoApp
组件中的渲染功能。此功能如下所示:
render() {
console.log('test');
return(
<div styleName="TodoApp">
<TodoForm addTodo={this.addTodo} />
<TodoList todos={this.state.todos} deleteTodo={this.deleteTodo} toggleDone={this.toggleDone} updateTodo={this.updateTodo} />
</div>
);
}
所以,现在重要的东西。我更新了这个渲染函数的返回值,它应该触发HMR启动。我将渲染函数改为此。
render() {
console.log('test');
return(
<div styleName="TodoApp">
<p>Hi Stackoverflow</p>
<TodoForm addTodo={this.addTodo} />
<TodoList todos={this.state.todos} deleteTodo={this.deleteTodo} toggleDone={this.toggleDone} updateTodo={this.updateTodo} />
</div>
);
}
这是我在控制台中获得的输出:
client?344c:41 [WDS] App updated. Recompiling...
client?344c:41 [WDS] App hot update...
dev-server.js:45 [HMR] Checking for updates on the server...
TodoApp.js:102 test
log-apply-result.js:20 [HMR] Updated modules:
log-apply-result.js:22 [HMR] - ./components/TodoApp.js
dev-server.js:27 [HMR] App is up to date.
你会说这很好。 但我的网站没有更新任何内容。
然后我将index.js
中的HMR代码更改为:
// Hot Module Replacement API
if (module.hot) {
module.hot.accept();
}
它有效。我只是不明白。如果这是我的HMR代码,为什么它不起作用:
// Hot Module Replacement API
if (module.hot) {
module.hot.accept('./components/TodoApp', () => {
render(TodoApp)
});
}
BTW此设置基于https://webpack.js.org/guides/hmr-react/
的设置我希望有人能帮助我。如果有人需要更多信息,请不要犹豫。提前谢谢!
更新
忘记发布我的.babelrc
文件。就是这样:
{
"presets": [
["es2015", {"modules": false}],
// webpack understands the native import syntax, and uses it for tree shaking
"react"
// Transpile React components to JavaScript
],
"plugins": [
"react-hot-loader/babel"
// EnablesReact code to work with HMR.
]
}
答案 0 :(得分:6)
导入是静态的,在module.hot.accept
中确定更新之后,您再次呈现完全相同的组件,因为TodoApp
仍然保留模块的旧版本,而HMR意识到并且没有&# 39; t刷新或更改应用中的任何内容。
您想使用Dynamic import: import()
。要使其与babel一起使用,您需要添加babel-plugin-syntax-dynamic-import
,否则它会报告语法错误,因为它不希望将import
用作函数。如果您在网络包配置中使用react-hot-loader/babel
,则不需要react-hot-loader/patch
,因此.babelrc
中的插件将变为:
"plugins": [
"syntax-dynamic-import"
]
在render()
功能中,您现在可以导入TodoApp
并进行渲染。
const render = () => {
import('./components/TodoApp').then(({ default: Component }) => {
ReactDOM.render(
<AppContainer>
<Component />
</AppContainer>,
document.querySelector('#main')
);
});
};
render();
// Hot Module Replacement API
if (module.hot) {
module.hot.accept('./components/TodoApp', render);
}
import()
是一个将使用该模块解决的承诺,并且您希望使用default
导出。
即使以上情况属实,webpack文档也不要求您使用动态导入,因为webpack处理开箱即用的ES模块,也在react-hot-loader
docs - Webpack 2中描述,并且因为webpack也在处理HMR,它将知道在这种情况下该怎么做。为此,您不能将模块转换为commonjs。您使用["es2015", {"modules": false}]
执行了此操作,但您也在webpack配置中配置了latest
预设,这也会转换模块。为避免混淆,您应该在.babelrc
中使用所有babel配置,而不是将某些配置文件拆分为加载程序选项。
完全从您的网络包配置中移除babel-loader
中的预设,它将在您.babelrc
中拥有必要的预设时起作用。不推荐使用babel-preset-latest
,如果您想使用这些功能,则应该开始使用babel-preset-env
替换es2015
。因此,.babelrc
中的预设为:
"presets": [
["env", {"modules": false}],
"react"
],
答案 1 :(得分:1)
在GitHub上查看issue或在index.js中使用它:
import React from 'react'
import ReactDOM from 'react-dom'
import { AppContainer } from 'react-hot-loader'
import App from './components/App'
const render = Component => {
ReactDOM.render(
<AppContainer>
<Component/>
</AppContainer>,
document.getElementById('react-root')
)
}
render(App)
if(module.hot) {
module.hot.accept();
}