node - Not compatible with your operating system or architecture: fsevents@1.1..2

I get this error doing npm install

$ npm install
npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.1.2

Not sure how to get around it. It says warning but then when I do npm start I get:

$ npm start
> react-speed-book@1.0.0 start /home/durrantm/Dropbox/92_2017/work/code/javascri
pt/react/react_speed_book/react-speed-book
> NODE_ENV=development webpack-dev-server --inline
events.js:141 throw er; // Unhandled 'error' event ^
1

1 Answer

One (workaround) is to delete the node_modules/ directory and then repeat

npm install
npm start

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like