Cara Menghentikan Server Node Berjalan
ps aux | grep node
kill -9 PROCESS_ID
Graceful Gibbon
ps aux | grep node
kill -9 PROCESS_ID
ps aux | grep node
#The last record is for grep and it is not victime
#You should kill the processes who are running ".../react-scripts start"
sudo kill -9 process_id
killall node
npm run react-scripts start