Documentation
Error Library
Real programming errors with root cause analysis and step-by-step fixes.
TypeErrorJavaScriptJun 2026
Cannot read properties of undefined (reading 'map')
Called .map() on undefined when the API returned no data instead of an empty array.
VueAPINullish Coalescing
View Solution →CORSJavaScriptJun 2026
Access to fetch blocked by CORS policy
The browser blocked a fetch request because the server did not include the required Access-Control-Allow-Origin header.
HTTPExpressBrowser
View Solution →TypeErrorPythonMay 2026
'NoneType' object is not iterable
Tried to loop over a function's return value that turned out to be None.
PythonFunctionsIteration
View Solution →ENOENTNode.jsMay 2026
ENOENT: no such file or directory, open './config.json'
Node tried to open a file using a relative path that resolved from the wrong working directory.
Node.jsFile SystemESM
View Solution →HydrationErrorVue / NuxtApr 2026
Hydration completed but contains mismatches
Server-rendered HTML didn't match what Vue generated on the client, causing a layout flash on load.
NuxtSSRVue 3
View Solution →ImportErrorTypeScriptApr 2026
Cannot find module '../utils/format' or its corresponding type declarations
TypeScript couldn't resolve an import even though the file existed — tsconfig paths were missing.
TypeScripttsconfigModule Resolution
View Solution →