How to solve nodemon issue in node.js
Answers
Answered by
0
Answer:
Try to check installed global packages npm list -g --depth=0 . If you will not find nodemon , - install it with flag -g or --save-dev . Don't install nodemon with flag --save , because nodemon uses only for development . Install nodemon globally using following command.
Explanation:
mark as brainliest please so that I can attain next rank
Similar questions