Hello,npm
Just sharing a solution to the errors below, when you run "npm start" and a port is already in use:markdown
Error: listen EADDRINUSE 127.0.0.1:8080" (or EADDRINUSE 127.0.0.1:3000)io
1) Type "netstat -aon" on Command Promptclass
2) Find the relative PID number to 127.0.0.1:8080 (or 3000)error
3) Run "taskkill /f /pid pidnumber"di
4) Run "npm start" againtar