ReferenceError: Cannot access before initializationReferenceError: Cannot access before initialization
A variable declared with let or const was accessed before its declaration in the temporal dead zone.
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.
In strict mode, you cannot use delete on a variable, function argument, or function name. The delete operator is only for removing object properties, not for deleting variables.
Use delete only on object properties: delete obj.prop. To 'remove' a variable, set it to undefined or null. If you need to remove a global, use delete globalThis.name instead of delete name.
ReferenceError: Cannot access before initializationA variable declared with let or const was accessed before its declaration in the temporal dead zone.
ERR_TLS_CERT_ALTNAME_INVALIDThe hostname does not match any of the Subject Alternative Names (SANs) in the server's TLS certificate.
TypeError: Cannot read properties of undefined/nullAn attempt was made to access a property or method on undefined or null.
EADDRINUSEThe address (port) is already in use by another process.
TypeError: Assignment to constant variableAn attempt was made to reassign a variable declared with const.
ERR_OSSL_EVP_UNSUPPORTEDAn OpenSSL operation is unsupported, typically because Node.js 17+ uses OpenSSL 3.0 which disables legacy algorithms.