0
I’m trying to install the nodemon
globally, using:
npm install nodemon --global
It seems to install normally, with two warnings for an optional module:
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0
But when I try to execute him:
nodemon servidor.js
Makes a mistake:
'nodemon' is not recognized as an internal or external command,
operable program or batch file.
What’s wrong with it?
P.S. on another computer worked smoothly. I’m on a Windows 10.
Did you install with one user and now are with another? What operating system do you use? For example if you do
install -g nodemon
assudo
it installs in a board that is not common to other users.– Sergio