StackOverflowとGitHubの問題についても多くの回答を確認しましたが、Webpackのホットモジュールの交換で立ち往生しています。 npm start
を使用してサーバーをwebpack-dev-server --hot --inline
で実行しています。 Reactコンポーネントのコードを変更しようとしていますが、ブラウザーで何も起こりません。
Ubuntu14.04LTSでGoogle Chromeバージョン49.0.2623.87(64ビット)を使用しています。
私のブラウザconsole
で、次のようにログメッセージを受け取ります
[HMR] WDSからの更新信号を待っています...
[WDS]ホットモジュールの交換が有効になっています。
ただし、ホット/ライブリロードは発生していません。 Reactコンポーネントファイルのコードを変更しても何も表示されません。このチュートリアルの最初のビデオをフォローしていました Egghead.io/ReactFundamentals すべてが正常に機能しました。
以下は私のpackage.jsonとwebpack.config.jsファイルです。
package.json
{
"name": "react-fundamentals",
"version": "1.0.0",
"description": "Fundamentals of ReactJS",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot --inline"
},
"author": "",
"license": "ISC",
"dependencies": {
"react": "^15.0.0-rc.2",
"react-dom": "^15.0.0-rc.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}
webpack.config.js
module.exports = {
context: __dirname,
entry: "./main.js",
output: {
path: __dirname,
filename: "bundle.js"
},
devServer: {
port: 7777
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: "babel",
query: {
presets: ["es2015", "react"]
}
}
]
}
}
私はチュートリアルをさらに効率的に進めることができないので、誰かがこの問題について私を案内してくれると素晴らしいでしょう。
更新以下に回答を投稿しました。
私は自分で解決策を見つけました。
サーバーをSudo
で実行する必要があります。 npm start
の代わりに、Sudo npm start
である必要があります。
それが役に立てば幸い!
devServer: {
inline: true, // you missed this line which will reload the browser
port : 7777
}
Webpackの設定がオフになっています。正しい設定については、 react-transform-boilerplate をご覧ください。
webpack.config.js
var path = require('path');
var webpack = require('webpack');
module.exports = {
// or devtool: 'eval' to debug issues with compiled output:
devtool: 'cheap-module-eval-source-map',
entry: [
// necessary for hot reloading with IE:
'eventsource-polyfill',
// listen to code updates emitted by hot middleware:
'webpack-hot-middleware/client',
// your code:
'./src/index'
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: '/dist/'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
module: {
loaders: [{
test: /\.js$/,
loaders: ['babel'],
include: path.join(__dirname, 'src')
}]
}
};
.babelrc
{
"presets": ["react", "es2015"],
"env": {
"development": {
"presets": ["react-hmre"]
}
}
}
node_modules
フォルダとpackage-lock.json
ファイルを削除しました。次に、npm install
を再実行します。出来た!
私は次のバージョンを使用しています: "webpack": "〜1.12.14" "webpack-hot-middleware": "^ 2.10.0" "webpack-dev-middleware": "^ 1.6.1"
そして、react.jsプロジェクトのapp.jsで次のコードを使用します。
var webpackconfig =require('./webpack.config');
var webpack = require('webpack');
var webpackMiddleware = require('webpack-dev-middleware');
var webpackHotMiddleware = require('webpack-hot-middleware');
var http = require('http');
var express = require('express');
var app = require('express')();
var isDeveloping = process.env.NODE_ENV != 'production';
// var isDeveloping = false;
console.log("IS developing ",isDeveloping);
var serverConfig = require('./globalconfig.js')
var serverPort = serverConfig.port
app.get('/css/bootstrap.min.css', function (req, res) {
res.sendFile(path.join(__dirname, 'public/lib/bootstrap/css/bootstrap.min.css'));
});
// swaggerRouter configuration
var options = {
controllers: './controllers',
useStubs: process.env.NODE_ENV === 'development' ? true : false // Conditionally turn on stubs (mock mode)
}
var config = {
appRoot: __dirname // required config
}
// Start the server
app.listen(serverPort, function () {
console.log('Your server is listening * on port %d (http://localhost:%d)', serverPort, serverPort);
});
if (isDeveloping) {
app.use('/node_modules', express.static('/node_modules'));
app.use(express.static('src/web-ui/public/'));
app.use(express.static('src/web-ui/public/'));
const compiler = webpack(webpackconfig);
const middleware = webpackMiddleware(compiler,{
publicPath: webpackconfig.output.publicPath,
headers: {
"Cache-Control" : "public, max-age=604800"
},
constentBase:'dist',
stats:{
color:true,
hash:false,
timings:true,
chunks:false,
chunkModules:false,
modules:false
}
});
app.use(middleware);
app.use(webpackHotMiddleware(compiler));
app.get('/',function response(req,res){
res.write(middleware.fileSystem.readFileSync(path.join(_dirname,'dist/index.html')));
res.end();
});
} else {
app.use('/node_modules', express.static('/node_modules'));
app.use(express.static('dist/public'));
app.use(express.static('dist'));
app.get('/', function response(req, res,next) {
console.log("Processing req");
var entryFile = path.join(__dirname, 'dist', 'index.html');
console.log("Hitting the Root",entryFile);
res.sendFile(entryFile);
});
}
同じコードが他の従業員のコンピューターでホットリプレースされますが、常にではありませんが、多くの場合、ホットリプレースは私のコンピューターでは機能しません。