本文主要是介绍fsevents@1.2.13: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
呵呵最近学three.js,踩了很多坑,本着不想麻烦老同学,自己百度的想法
我就开始学习,第一步就是要我搭建nodejs本地服务器,我输入npm install -g live-server,
第一步就卡住,没太看懂怎么回事,在网上逛了一圈,说文件权限不够,我就把nodejs,第一第二权限完全控制
万万妹想到,又tm卡住了,卡住害不报错,非得我ctrl c,npm WARN deprecated fsevents@1.2.13: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.npm install fsevents
就这就这就这就这,单独安装一下,npm install fsevents,报错notsup,应该是不支持的以上,网上说这个包是darwin系统用的
那我用的是windows肯定不对,所以要修改nodejs\node_modules\npm\packag.json,用DW打开了,幸好学了一半java的基础,会看一点,找了半天,没有optionalDependencies,最后在中间加了这一段代码,意思是把fsevents安装变成可选的
"optionalDependencies": {"fsevents": "*"},
果然重新安装就跳过辣,,,,太无语了
这篇关于fsevents@1.2.13: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!