我正在尝试使用reactjs前端开始使用feathersjs应用。使用webpack-dev-middleware
和webpack-hot-middleware
,我应该能够在开发过程中简单地使用所有这些webpack内容扩展羽毛应用程序。唯一的问题是,每当我从webpack获取js文件时,总会得到一个羽毛404页面。
目前,这是我的目录结构:
/feathers/public/index.html
/feathers/src/app.js
/react/src/index.js
/react/webpack.config.js
/react/develop.js
/feathers/src/app.js
是默认的羽毛应用,提供公共文件夹中的静态文件。
.use('/', serveStatic( app.get('public') ))
在/react/develop.js
中,我需要使用feat应用程序并使用webpack中间件扩展它。
const app = require('../feathers/src/app');
const config = require('./webpack.config');
const path = require('path');
const webpack = require('webpack');
var compiler = webpack(config);
app.use(require('webpack-dev-middleware')(compiler, {
publicPath: '/',
stats: {colors: true},
}));
app.use(require('webpack-hot-middleware')(compiler));
const port = app.get('port');
const server = app.listen(port);
server.on('listening', () =>
console.log(`Feathers application started on ${app.get('host')}:${port}`)
);
可悲的是,这根本不起作用。作为参考,这是我的/react/webpack.config.js
var webpack = require("webpack")
module.exports = {
devtool: 'source-map',
entry: [
'webpack-hot-middleware/client',
'src/index.js'
],
output: {
path: '/',
filename: "bundle.js",
},
module: {
loaders: [
{ test: /\.js$/, loader: "babel", exclude: /node_modules/, query: { presets: ['es2015', 'react', 'stage-0'] } },
{ test: /\.(svg|png|jpe?g|gif|ttf|woff2?|eot)$/, loader: 'url?limit=8182' },
]
},
resolve: {
root: [
__dirname,
__dirname + '/src',
]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
]
}
/feathers/public/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>React App</title>
</head>
<body>
<div id="root"></div>
<script src="bundle.js"></script>
</body>
</html>
我已经尝试过使用publicPath的东西,但没有运气。任何想法如何让这个工作?我已经花了2个小时坚持这个并没有在哪里。 Here's a link to the repo I'm working with for more context
答案 0 :(得分:4)
我从你的存储库中看到你通过将webpack dev / hot中间件包含在feathers/src/middleware/index.js中的适当位置来实现这一点,它们将在Feathers的notFound中间件返回404之前使用它们。中间件订单很重要!
像react/middleware.js中那样为此目的导出函数是解决此问题的一个干净的解决方案,因为它隔离了从后端本身设置webpack中间件的问题(所有webpack内容都保留在前端) )。
希望这有助于其他任何人!