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


84

每当我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'
      }
    ]
  }
}

package.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"
}

Answers:


154

您应该在安装npm时将babel-loader和babel-core安装为dev-dependency。

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

像魅力一样运作!灰烬将其添加到您的packag.json以避免再次遇到此问题。运行npm install 与国旗-Swiil做的工作。
andilabs

4
我仍然得到:Error: Cannot find module '@babel/core' babel-loader@8 requires Babel 7.x (the package '@babel/core'). If you'd like to use Babel 6.x ('babel-core'), you should install 'babel-loader@7'
pguardiario

3
加载程序v8似乎需要核心v7,但是核心v7当前只有一个beta发行版,似乎是维护人员的疏忽。我手动指定7.1.5babel-loader(当前最新版本),然后我就可以运行了
Brian Underwood

42

对于那些想使用babel-loader 8+的用户:它需要Babel 7.x,它将以'@ babel / core'软件包而不是'babel-core'的形式安装。换句话说,运行:

npm install --save-dev @babel/core

2
然后,我想您不是在使用babel-loader 8+。我为刚好要升级/启动新项目但不知道为什么由于软件包重命名而无法工作的人回答了这个问题。明确说明了它适用于哪个版本时,无需进行投票。
CounterFlame


6

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

今天,我在这里浏览Axel Rauschmayer博士的书时遇到了这个问题。每本书也babel-loader应下载babel-core。但是,当我尝试时并非如此。我认为这与@theJian的答案有关。

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

npm install babel-core --save-dev

2
npm install babel-register

这样可以解决您的问题。此外,添加babelrc .babelrc {“ presets”:[“ es2015”,“ react”]}


6
为什么?您能否解释为什么会起作用?
Eric Hepperle-CodeSlayer2010 '12
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.