ERR_SOCKET_BAD_PORTERR_SOCKET_BAD_PORT
An invalid port number was specified for a network operation.
EPIPEAn attempt was made to write to a pipe or socket whose reading end has been closed.
You wrote to a stream or socket after the other end disconnected. This commonly occurs when piping output to a process that exits early, when a client disconnects during a response, or when a downstream process crashes.
Handle the EPIPE error in your error handler. Check if the stream is writable before writing: stream.writable. Listen for the 'close' event on the stream. Implement proper stream error handling.
ERR_SOCKET_BAD_PORTAn invalid port number was specified for a network operation.
TypeError: Cannot read properties of undefined/nullAn attempt was made to access a property or method on undefined or null.
RangeError: precision is out of rangeA precision value passed to toFixed(), toPrecision(), or toExponential() is outside the allowed range.
ERR_SERVER_ALREADY_LISTENThe server.listen() method was called when the server is already listening.
ERR_WORKER_OUT_OF_MEMORYA Worker thread ran out of memory.
DOMException: The operation was abortedAn operation was canceled via an AbortController signal.