SyntaxError: Unexpected end of inputSyntaxError: Unexpected end of input
The parser reached the end of the input while still expecting more code, usually due to unclosed brackets or strings.
ERR_INSPECTOR_ALREADY_ACTIVATEDThe Node.js inspector (debugger) was activated more than once.
The inspector module's open() method was called when the inspector is already active. This happens when multiple debugging tools try to attach, or your code calls inspector.open() multiple times.
Call inspector.open() only once. Check inspector.url() to see if the inspector is already active before opening. Close the existing inspector before opening a new one.
SyntaxError: Unexpected end of inputThe parser reached the end of the input while still expecting more code, usually due to unclosed brackets or strings.
TypeError: Cannot convert undefined or null to objectA built-in method that expects an object received null or undefined instead.
ETIMEDOUTA connection or operation timed out because the remote host did not respond in time.
RangeError: precision is out of rangeA precision value passed to toFixed(), toPrecision(), or toExponential() is outside the allowed range.
TypeError: x is not a functionAn attempt was made to call a value as a function when it is not a function.
UnhandledPromiseRejectionA Promise was rejected but no .catch() handler or try-catch block was present to handle the rejection.