📌  相关文章
📜  nodemon 关闭正在运行的服务器 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:45.340000             🧑  作者: Mango

代码示例1
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