There is no other process containing the keyword "node" in your ps aux output except from grep node . You are trying to kill the grep process of the nodes, and none of the nodes are working, therefore it is not working.
Try with
sudo killall node
Or
sudo kill -9 'ps aux | grep node | grep -v grep | awk '{print $2}''
source share