npm安装在nodemon@1.18.9后安装脚本处失败

时间:2018-12-16 19:32:49

标签: node.js npm npm-install node-modules nodemon

“ npm install”命令给我以下错误:

> nodemon@1.18.9 postinstall C:\Users\Nikhil\Music\tab-tracker\server\node_modules\nodemon
> node bin/postinstall || exit 0

npm WARN server@1.0.0 No description
npm WARN server@1.0.0 No repository field.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

npm ERR! file bashcls
npm ERR! path bashcls
npm ERR! code ELIFECYCLE
npm ERR! errno ENOENT
npm ERR! syscall spawn bashcls
npm ERR! nodemon@1.18.9 postinstall: `node bin/postinstall || exit 0`
npm ERR! spawn bashcls ENOENT
npm ERR!
npm ERR! Failed at the nodemon@1.18.9 postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Nikhil\AppData\Roaming\npm-cache\_logs\2018-12-16T19_09_40_364Z-debug.log

从错误消息中可以看出,npm安装在nodemon@1.18.9安装后脚本处失败。 我尝试过类似的操作,删除node_modules文件夹,然后再次重新运行“ npm install”命令,会出现相同的错误。 另外,我尝试按照this answer的建议清理npm缓存,但是它不起作用。尝试分开安装nodemon会出现与上述相同的错误。

1 个答案:

答案 0 :(得分:0)

我在安装时遇到同样的问题

  

nodemon

在我的现有项目在不同计算机上的devDependencies中

。 我进行了研究,找到了一种解决方案,可以帮助我解决此类问题。发生这种情况的原因是取决于您的操作系统的安全性问题。

通过以下方式解决此问题:

npm install -g nodemon --unsafe-perm=true --allow-root

PS: 这也可能在电子中发生,因此您可以通过-

解决
npm install -g electron --unsafe-perm=true --allow-root