ERR_PACKAGE_PATH_NOT_EXPORTEDERR_PACKAGE_PATH_NOT_EXPORTED
A subpath of a package was imported that is not defined in the package's exports field.
TypeError: Cannot convert undefined or null to objectA built-in method that expects an object received null or undefined instead.
You passed null or undefined to a method like Object.keys(), Object.assign(), or spread syntax that requires an object. The function attempts to convert the value to an object but cannot convert null/undefined.
Add a null check before calling the method: Object.keys(value || {}). Use nullish coalescing: Object.keys(value ?? {}). Verify the source variable is properly initialized before passing it to object methods.
Object.keys(null); // TypeErrorERR_PACKAGE_PATH_NOT_EXPORTEDA subpath of a package was imported that is not defined in the package's exports field.
ReferenceError: Cannot access before initializationA variable declared with let or const was accessed before its declaration in the temporal dead zone.
SyntaxError: Unexpected tokenThe parser encountered a token (character or keyword) that was not expected at that position in the code.
ENETUNREACHThe network is unreachable; no route to the target network could be found.
ECONNRESETThe 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.