尝试安装 VueJs 项目时 fsevents 的普通错误

Ordinary Err from fsevents when trying to install VueJs project

尝试安装 VueJs 项目时 fsevents 出现普通错误。

我正在使用 windows 10 作为开发平台

我尝试了几种替代方法都没有成功。

npm install --no-optional(无效)

npm install -f(无效)

在这种情况下,它不仅仅是一条警告消息。发出错误,它没有完成完整代码的编译,服务器 "npm run serves" 没有启动

有人能帮忙吗?

npm ERR! code EBADPLATFORM
npm ERR! notsup Unsupported platform for fsevents@2.1.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","a
rch":"x64"})
npm ERR! notsup Valid OS:    darwin
npm ERR! notsup Valid Arch:  any
npm ERR! notsup Actual OS:   win32
npm ERR! notsup Actual Arch: x64

将以下内容添加到 package.json

"optionalDependencies": {
    "fsevents": "1.2.12"
  },