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.
ERR_NETWORK_IMPORT_DISALLOWEDA network import (HTTP/HTTPS) was attempted but is not allowed by the current Node.js configuration.
Node.js blocks importing modules from network URLs by default for security reasons. Network imports require the --experimental-network-imports flag.
Use local modules instead of network imports. If you must use network imports, start Node.js with --experimental-network-imports flag. Download the module locally and import from the filesystem.
ERR_TLS_CERT_ALTNAME_INVALIDThe hostname does not match any of the Subject Alternative Names (SANs) in the server's TLS certificate.
TypeError: Assignment to constant variableAn attempt was made to reassign a variable declared with const.
SyntaxError: Missing ) after argument listA function call is missing its closing parenthesis.
TypeError: Cannot add property, object is not extensibleAn attempt was made to add a property to an object that has been made non-extensible.
ENETUNREACHThe network is unreachable; no route to the target network could be found.
ReferenceError: Cannot access before initializationA variable declared with let or const was accessed before its declaration in the temporal dead zone.