Bug Description
When running a Node project, the following error suddenly appeared:
1 | listen EACCES: permission denied ::1:1420 |
The message indicates that access to the port was denied, likely because it is already occupied.
Bug Solution
According to the solution found on
stackflow
Open the terminal with administrator privileges and run the following command:
1 | net stop winnat |
Then:
1 | net start winnat |