NXDOMAINDNS NXDOMAIN — Domain Does Not Exist
The DNS server reports that the domain name does not exist.
EADDRINUSEThe network address (IP + port) is already being used by another process.
Another process is already listening on the same port. This commonly occurs when restarting a server before the old process fully terminates, or when multiple instances try to use the same port.
Stop the other process using the port. Use a different port. Wait for the old process to release the port. Use SO_REUSEADDR socket option. Find the process: lsof -i :PORT or netstat -tulpn.
// Error: listen EADDRINUSE: address already in use :::3000NXDOMAINThe DNS server reports that the domain name does not exist.
ERR_CONNECTION_REFUSEDThe browser's connection attempt was actively refused by the server.
ETIMEDOUTThe connection attempt timed out before a response was received.
ERR_TOO_MANY_REDIRECTSThe browser detected too many HTTP redirects (typically more than 20).
CORS: Preflight request failedThe CORS preflight OPTIONS request was rejected by the server.
ERR_PROXY_CONNECTION_FAILEDThe connection to the proxy server could not be established.