npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.7 (node_modules\fsvents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents1.2.7: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64")
原因:
fsevents不在package.json里,但是仍然安裝了,是因為你的系統是Windows系統,fsevents是蘋果系統的可選依賴,你的項目有可能是團隊項目,別人在他的mac上安裝了fsevents相關依賴庫,
所以到這邊你也就安裝到你的windows上邊了。你可以檢查你的package.json 文件中是不是有fsevents相關依賴,刪除即好!
如果沒有,其他的npm包也會有依賴fsevents的!!!
這是warning錯誤,是因為mac下需要 fsevents,這里是在windows環境,所以可以忽略這個警告,對你沒什么影響的。