how to kill on process from a terminal code example
Example 1: how to kill a process with linux
ps ux #list the running proccess
kill -9 <PID>
Example 2: kill process cmd
netstat -ano | findstr :3000
taskkill /PID "123" /F
ps ux #list the running proccess
kill -9 <PID>
netstat -ano | findstr :3000
taskkill /PID "123" /F