0
votes

Am new to Angular so am trying to follow tutorial on https://angular.io/tutorial/toh-pt6

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

  • [email protected] updated 1 package and audited 42609 packages in 21.447s found 5 high severity vulnerabilities run npm audit fix to fix them, or npm audit for details
2

2 Answers

0
votes

This is an optional dependency so you can just ignore it.

If you really want this message to disappear - try to update npm

npm i -g npm@latest

it can help.

0
votes

According to this issue. You can ignore this warning since fsevents is required on macOS so it's skipped on windows.