ECONNRESETECONNRESET
The remote server forcibly closed the connection.
ERR_TLS_CERT_ALTNAME_INVALIDThe hostname does not match any of the Subject Alternative Names (SANs) in the server's TLS certificate.
The TLS certificate does not include the hostname you are connecting to in its Subject Alternative Name field. This happens when connecting to an IP instead of the hostname, using the wrong domain, or with improperly configured certificates.
Connect using the hostname that matches the certificate's SAN. Generate a new certificate that includes all required hostnames. Do not bypass with rejectUnauthorized: false in production as it disables security.
ECONNRESETThe remote server forcibly closed the connection.
UnhandledPromiseRejectionA Promise was rejected but no .catch() handler or try-catch block was present to handle the rejection.
TypeErrorA value is not of the expected type. This is the most common JavaScript error, occurring when an operation encounters a value of the wrong type.
SyntaxError: Missing ) after argument listA function call is missing its closing parenthesis.
TypeError: x is not iterableA value that is not iterable was used where an iterable was expected, such as in a for...of loop or spread operator.
SyntaxError: Applying delete to unqualified name in strict modeThe delete operator was used on a plain variable name in strict mode, which is not allowed.