How can I remove the current process/application which is already assigned to a port?
For example: localhost:8080
localhost:8080
If you are using GitBash
Step one:
netstat -ano | findstr :8080
Step two:
taskkill /PID typeyourPIDhere /F
(/F forcefully terminates the process)
/F