如何用babel和webpack设置你的react / node项目?

时间:2017-12-30 14:33:40

标签: javascript node.js reactjs webpack babeljs

我试图与babel和webpack建立一个新的反应项目,但它没有工作。这是我的webpack.dev.config.js文件:

var webpack = require('webpack');
var path = require('path');

var parentDir = path.join(__dirname, '../');

module.exports = {
    entry: [
        path.join(parentDir, '/react_components/index.js')
    ],
    module: {
        loaders: [{
            test: /\.(js|jsx)$/,
                exclude: /node_modules/,
                loader: 'babel-loader',
                query: {
                    presets: ['es2015', 'react']
                  }
            }
        ]
    },
    output: {
        path: parentDir + '/html',
        filename: 'main.js'
    },
    devServer: {
        contentBase: parentDir,
        historyApiFallback: true
    }
}

这是我项目的屏幕截图:

enter image description here

我得到的消息是webpack已成功编译但main.js文件仍为空

PS:我正在使用本教程

https://medium.com/netscape/setting-up-a-react-project-from-scratch-d62f38ab6d97

2 个答案:

答案 0 :(得分:2)

尝试在项目目录中运行node node_modules\webpack\bin\webpack.js,它应该构建一个phyisical main.js文件。

  

webpack-dev-server无法写入磁盘。它服务于结果   来自记忆。

来源:https://github.com/webpack/webpack-dev-server/issues/24

答案 1 :(得分:0)

打开package.json文件。在内部脚本中添加"build": "webpack"

你的脚本对象应该看起来像这样:

"scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "webpack-dev-server --hot", "build":"webpack" }

然后在您的终端上运行npm run build