Answers for "stop nodemon command"

0

nodemon close server that's running

Linux:

Assuming this is Linux, do: ps aux | grep -i nodemon 
find out which process number nodemon is, then issue a: kill -9 [process ID]

Alternatively you could do: killall nodemon 
if that was the only instance running

Or Even better: pkill -f nodemon
Posted by: Guest on December-13-2021
0

nodemon a npm run command

nodemon --exec npm run dev:test
Posted by: Guest on April-17-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language