ERR_MISSING_ARGSERR_MISSING_ARGS
A required argument was not passed to a Node.js API function.
ERR_INVALID_RETURN_VALUEA function returned a value of an unexpected type.
A Node.js API callback or hook function returned a value that does not match the expected type. For example, a transform stream's _transform returning a non-undefined value, or a custom resolver returning a non-string.
Check the Node.js documentation for the expected return type of the function. Ensure your callback returns the correct type. For async functions, return a Promise of the correct type.
ERR_MISSING_ARGSA required argument was not passed to a Node.js API function.
EMFILEThe process has reached the maximum number of open file descriptors allowed.
TypeError: x is not a functionAn attempt was made to call a value as a function when it is not a function.
SyntaxError: Unexpected end of inputThe parser reached the end of the input while still expecting more code, usually due to unclosed brackets or strings.
DOMException: NetworkErrorA network operation failed, typically during a fetch request when the network is unreachable.
TypeError: Cannot convert undefined or null to objectA built-in method that expects an object received null or undefined instead.