我正在将Node js用于个人项目,但是在安装node-cron时仍然遇到相同的问题。 在Heroku上进行部署时,它始终会显示以下相同的错误消息,但在本地安装时不会发生。
我尝试在线查找其他有类似问题的人,但似乎没有弹出。如果有人可以找到解决方案,将不胜感激!
> node-cron@2.0.3 postinstall /tmp/build_13203812b696ff71f401fd657fdd6fdd/node_modules/node-cron
remote: > opencollective-postinstall
remote:
remote: sh: 1: opencollective-postinstall: Permission denied
remote: npm ERR! code ELIFECYCLE
remote: npm ERR! errno 126
remote: npm ERR! node-cron@2.0.3 postinstall: `opencollective-postinstall`
remote: npm ERR! Exit status 126
remote: npm ERR!
remote: npm ERR! Failed at the node-cron@2.0.3 postinstall script.
remote: npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
答案 0 :(得分:0)
尝试在|| exit 0
的{{1}}脚本的末尾添加postinstall
,以确保它永远不会停止npm安装过程。
答案 1 :(得分:0)
实际上,opencollective存在问题,并且由于node-cron使用此问题,因此出现了问题。
安装opencollective-postinstall npm软件包,并在package.json中添加postinstall脚本:
"postinstall": "opencollective-postinstall || exit 0"
使用exit 0
是为了即使脚本失败也可以防止进程停止。
https://github.com/mattezell/ngx-infinite-scroll/commit/fc7165bd099145321235948723ee6e644ded65a8