How to fix Nodemon Command not found on Linux/Mac
 $ nodemon
bash: nodemon: command not found
nodemon
bash: /usr/local/bin/nodemon: No such file or directory
with this command we install nodemon 
 sudo npm install nodemon -g
 if already install in your system just add this commands  sudo npm install -g --force nodemon 
in Windows os :npm install -g nodemon nodemon 
Comments
Post a Comment