找不到module“babel-core”中的错误。使用 react.js、webpack 和 express 服务器

IT技术 javascript express reactjs webpack babeljs
2021-05-14 23:59:41

每当我webpack在终端中运行时,我都会得到:

Hash: efea76b1048c3a97b963
Version: webpack 1.12.13
Time: 33ms
    + 1 hidden modules

ERROR in Cannot find module 'babel-core'

这是我的webpack.config.js文件

module.exports = {
  entry: './app-client.js',
  output: {
    filename: 'public/bundle.js'
  },
  module: {
    loaders: [
      {
        exclude: /(node_modules|app-server.js)/,
        loader: 'babel'
      }
    ]
  }
}

包.json

{
  "name": "react",
  "version": "1.0.0",
  "description": "React polling app",
  "main": "app-client.js",
  "dependencies": {
    "babel-loader": "^6.2.2",
    "bootstrap": "^3.3.6",
    "express": "^4.13.4",
    "react": "^0.14.7"
  },
  "devDependencies": {},
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}
4个回答

你应该在 npm install 时安装 babel-loader 和 babel-core 作为 dev-dependency。

npm install babel-core babel-loader --save-dev

对于那些想要使用 babel-loader 8+ 的人:它需要 Babel 7.x,它被安装为 '@babel/core' 包而不是 'babel-core'。换句话说,运行:

npm install --save-dev @babel/core

我刚遇到这个错误,通过安装 babel-core 解决了。但有趣的是我发现 babel-core 确实存在于 babel-loader 的 peerDependencies 中。

https://github.com/babel/babel-loader/blob/master/package.json

为什么 peerDependcies 没有自动安装,经过一些搜索工作,我在 npm 博客中找到了这个

peerDependencies 将不再自动安装。

在此线程上添加@Chetan 的回答:

我同时通过阿克塞尔Rauschmayer先生博士的书下面今天就遇到了这个问题在这里每本书,也babel-loader应该下载babel-core然而,当我尝试时,情况并非如此。我认为这与@theJian 的回答有关。

由于原始 package.json 已babel-loader列为依赖项,因此运行以下命令解决了错误。

npm install babel-core --save-dev