I'm executing the following command on mac
./node_modules/.bin/webpack --watch & nodemon dist/server.js
I tried killing the processes using Ctrl+C however i still notice that node processes are running (when i do a ps). Is there anyway to kill the processes correctly i this case?
kill PID
(SIGTERM). If it doesn't work, kill it effectively withkill -9 PID
(SIGKILL). See What is the difference between exiting a process via Ctrl+C vs issuing a kill -9 command? – Freddy May 05 '19 at 20:49