📅  最后修改于: 2022-03-11 14:59:45.340000             🧑  作者: Mango
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