ENOTDIRENOTDIR: Not a directory
A directory operation was attempted on a path that is not a directory.
DOMException: NotAllowedErrorA browser API call was blocked because it requires user interaction or permission that was not granted.
You called an API that requires a user gesture (click, touch) without one, or the user denied a permission request. Common with autoplay, clipboard, camera/microphone, notifications, and fullscreen APIs.
Trigger the API call from a user gesture event handler (click, touch). Request permissions before using the API. Handle the denied case gracefully. For autoplay, add the muted attribute to video elements.
ENOTDIRA directory operation was attempted on a path that is not a directory.
UnhandledPromiseRejectionA Promise was rejected but no .catch() handler or try-catch block was present to handle the rejection.
ECONNRESETThe remote server forcibly closed the connection.
SyntaxError: JSON.parse: bad parsingFirefox-specific error message for invalid JSON passed to JSON.parse().
SyntaxError: JSON.parse unexpected characterJSON.parse() encountered invalid JSON syntax, such as single quotes, trailing commas, or unquoted keys.
ERR_HTTP_HEADERS_SENTAn attempt was made to set headers or send a response after the HTTP response was already sent.