gpt4 book ai didi

javascript - babel-node 不被识别为内部或外部命令 - Babel 7

转载 作者:行者123 更新时间:2023-12-04 15:36:55 37 4
gpt4 key购买 nike

我正在使用 babel v7.6.x 并设置了以下内容。

包.json

 "scripts": {
"dev": "nodemon --exec babel-node bin/index.js",
"start": "babel-node bin/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
...
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"nodemon": "^1.19.4"
}

.babelrc

{
"presets":[
"@babel/preset-env"
]
}

但我仍然得到:

'babel-node' is not recognized as an internal or external command,
operable program or batch file.

它曾经可以工作,但自从最近进行了 npm install 以获取更新版本后,它未能成功启动。

我的 Node 版本是 10.15.2npm 版本为 6.12.0

提前致谢!

最佳答案

删除包目录:

rm -rf node_modules

重新安装:

yarn

npm install

检查没有错误

检查可用空间是否足够

检查文件是否存在:

  • node_modules/.bin/babel-node
  • node_modules/.bin/babel-node.cmd - 仅限 Windows
  • node_modules/@babel/node/bin/babel-node.js

关于javascript - babel-node 不被识别为内部或外部命令 - Babel 7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59420129/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com