TypeError: Cannot read properties of undefined/nullTypeError: Cannot read properties of undefined/null
An attempt was made to access a property or method on undefined or null.
ENFILEThe system-wide limit on the total number of open files has been reached.
All processes on the system together have exceeded the kernel's file descriptor limit. This is different from EMFILE which is per-process. The system is running out of file descriptors globally.
Increase the system-wide limit by editing /etc/sysctl.conf: fs.file-max = 2097152. Apply with sysctl -p. Investigate which processes are consuming the most file descriptors with lsof | wc -l.
TypeError: Cannot read properties of undefined/nullAn attempt was made to access a property or method on undefined or null.
ENOENTThe specified file or directory does not exist at the given path.
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.
ERR_HTTP2_STREAM_ERRORAn error occurred on an HTTP/2 stream.
SyntaxError: JSON.parse: bad parsingFirefox-specific error message for invalid JSON passed to JSON.parse().
RangeError: Invalid array lengthAn array was created with an invalid length, such as a negative number or a non-integer.