TypeError: Cannot convert a Symbol value to a stringTypeError: Cannot convert a Symbol value to a string
An implicit conversion of a Symbol to a string was attempted, which is not allowed.
ENOTDIRA directory operation was attempted on a path that is not a directory.
You tried to perform a directory operation (readdir, mkdir) on a path where a component is a file rather than a directory. For example, a file exists at /path/to where you expected a directory.
Verify the path components are all directories using fs.statSync(). Check for files that share names with expected directories. Fix the path to point to the correct directory.
TypeError: Cannot convert a Symbol value to a stringAn implicit conversion of a Symbol to a string was attempted, which is not allowed.
TypeError: Cannot read properties of undefined/nullAn attempt was made to access a property or method on undefined or null.
SyntaxError: JSON.parse unexpected characterJSON.parse() encountered invalid JSON syntax, such as single quotes, trailing commas, or unquoted keys.
RangeError: precision is out of rangeA precision value passed to toFixed(), toPrecision(), or toExponential() is outside the allowed range.
SyntaxErrorThe JavaScript engine encountered code that does not conform to the language syntax.
TypeError: x is not a constructorAn attempt was made to use the new keyword with a value that is not a constructor.