npx kill-port 3000
//Find Pid sudo lsof -i :3000 //kill kill -9 <pid>
lsof -P | grep ':PortNumber' | awk '{print $2}' | xargs kill -9