Categories
JavaScript Answers

How to fix the ‘Not compatible with your operating system or architecture: fsevents@1.0.11’ error on Node on Mac?

Spread the love

To fix the ‘Not compatible with your operating system or architecture: fsevents@1.0.11’ error on Node on Mac, we skip installing optional dependencies.

To do this, we run

npm install --no-optional

to run npm install with the --no-optional flag to skip installing optional dependencies.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *