[email protected]: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to

呵呵最近学three.js,踩了很多坑,本着不想麻烦老同学,自己百度的想法

我就开始学习,第一步就是要我搭建nodejs本地服务器,我输入npm install -g live-server,

第一步就卡住,没太看懂怎么回事,在网上逛了一圈,说文件权限不够,我就把nodejs,第一第二权限完全控制fsevents@1.2.13: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to_第1张图片

万万妹想到,又tm卡住了,卡住害不报错,非得我ctrl c,npm WARN deprecated [email protected]: 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": "*"
  },

果然重新安装就跳过辣,,,,太无语了

 

 

你可能感兴趣的:(nodejs)