ERR_TLS_CERT_ALTNAME_INVALIDERR_TLS_CERT_ALTNAME_INVALID
The hostname does not match any of the Subject Alternative Names (SANs) in the server's TLS certificate.
RangeError: Invalid dateAn invalid date string was passed to a Date method that requires a valid date.
You created a Date object with an invalid date string or timestamp, then called a method like toISOString() or toLocaleDateString() on it. The Date constructor silently creates an Invalid Date object instead of throwing.
Validate date strings before creating Date objects. Check with isNaN(date.getTime()) after construction. Use a date library like date-fns or dayjs for reliable parsing. Standardize date input formats.
new Date('not-a-date').toISOString(); // RangeError: Invalid time valueERR_TLS_CERT_ALTNAME_INVALIDThe hostname does not match any of the Subject Alternative Names (SANs) in the server's TLS certificate.
TypeError: Cannot delete property of objectAn attempt was made to delete a non-configurable property of an object in strict mode.
TypeError: x is not a functionAn attempt was made to call a value as a function when it is not a function.
InternalError: too much recursionFirefox-specific error equivalent to RangeError: Maximum call stack size exceeded in Chrome/Node.js.
EPIPEAn attempt was made to write to a pipe or socket whose reading end has been closed.
ERR_MISSING_ARGSA required argument was not passed to a Node.js API function.