I tried to install angular-cli, but I found this warn:
unsupported platform for fsevents@1.1.1: wanted"(OS windows 10).
I am beginner in Angular, so I am expecting simple solution to solve this.
I tried to install angular-cli, but I found this warn:
unsupported platform for fsevents@1.1.1: wanted"(OS windows 10).
I am beginner in Angular, so I am expecting simple solution to solve this.
Create an optionalDependencies
in package.json instead of devDependencies
:
"optionalDependencies": {
"fsevents": "*"
}
This is just a Warning
, so no need to take any further action. Go ahead and run your code.