Sometimes WebPack crashes and Node doesn’t always provide us with the easiest error messages.
Error: listen EADDRINUSE 127.0.0.1:<some-port>
Find the process ID (PID):
ps aux | grep node
Kill It:
kill -9 <PID>
Sometimes WebPack crashes and Node doesn’t always provide us with the easiest error messages.
Error: listen EADDRINUSE 127.0.0.1:<some-port>
Find the process ID (PID):
ps aux | grep node
Kill It:
kill -9 <PID>