Warning when installing nodemon. How to solve?

0

I installed the nodemon with the following command

$ sudo npm install -g nodemon

I received the following error:

npm WARN notsup Not compatible with your operating 
system or architecture: [email protected]

How important is this error? Why does he despise him? How do I solve it?

I'm running Ubuntu 16.04 64.

    
asked by anonymous 29.09.2016 / 21:55

1 answer

1

The fsevents dependency is intended for use on OSX, according to the package README in NPM .

As your operating system is a Linux, you can safely ignore this warning since nodemon will not use itself. :)

    
13.10.2016 / 02:52