使用springboot应用程序在角度上出现fsevents错误

时间:2017-09-11 13:05:14

标签: java node.js angular spring-boot npm-install

我正在尝试使用springboot应用程序创建一个角度示例。当我尝试安装bootstrapt时,我收到了这个错误。 ng版本和npm版本在下面。

如何实现这些ui组件?

C:\workspace\ng2boot\src\main\webapp\angular2>npm install bootstrap@3
angular2@0.0.0 C:\workspace\ng2boot\src\main\webapp\angular2
`-- bootstrap@3.3.7

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules\chokidar\node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.1.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})



C:\workspace\ng2boot\src\main\webapp\angular2>ng -v
    _                      _                 ____ _     ___
   / \   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|
  / △ \ | '_ \ / _` | | | | |/ _` | '__|   | |   | |    | |
 / ___ \| | | | (_| | |_| | | (_| | |      | |___| |___ | |
/_/   \_\_| |_|\__, |\__,_|_|\__,_|_|       \____|_____|___|
               |___/
@angular/cli: 1.2.1
node: 6.11.1
os: win32 x64


C:\workspace\ng2boot\src\main\webapp\angular2>npm -v
3.10.10

1 个答案:

答案 0 :(得分:1)

fsevents是一个开发时间的文件观察者'仅适用于Mac OS X的库。

由于您使用的是Windows,因此无法满足OPTIONAL依赖性(也不应该这样),因此您应该收到此警告。据我所知,没有办法压制它。

我认为这不应该产生警告,但这就是它的方式,至少现在,你只需要忽略它。