ERR_HTTP2_STREAM_ERRORERR_HTTP2_STREAM_ERROR
An error occurred on an HTTP/2 stream.
EEXISTA file creation operation failed because the target path already exists.
You tried to create a file or directory that already exists. This happens with fs.mkdirSync() without the recursive flag, or fs.writeFileSync() with exclusive flags, or fs.linkSync() when the target exists.
Check if the file exists first with fs.existsSync(). Use the { recursive: true } option for mkdirSync. Handle the EEXIST error gracefully in your catch block. Use appropriate flags (wx instead of w) only when uniqueness is required.
ERR_HTTP2_STREAM_ERRORAn error occurred on an HTTP/2 stream.
ERR_CRYPTO_INVALID_STATEA crypto operation was performed in an invalid state.
EMFILEThe process has reached the maximum number of open file descriptors allowed.
TypeError: Cannot convert undefined or null to objectA built-in method that expects an object received null or undefined instead.
RangeErrorA value is not within the expected range, such as an invalid array length or exceeding the call stack size.
TypeError: Reduce of empty array with no initial valueArray.reduce() was called on an empty array without providing an initial value.