I have a node app running on localhost:8080 in Chrome. I need to end this process so I can run others on the same port. But, even after a reboot, if I restart Chrome and access localhost:8080, the app is still there, and any other app that tries to access the port won't open. Based on my research, using cmd to open the terminal, and typing "netstat -aon | findstr 8080" (or :8080) should show what process is listening there, but I get no response. I downloaded TCPView - nothing is listed for port 8080.
How do I kill this app and make the port available?