Skip to content
fixerror.dev
language

Node.js Errors

Node.js errors: ECONNREFUSED, ETIMEDOUT, EADDRINUSE, ERR_MODULE_NOT_FOUND, ERR_REQUIRE_ESM, EACCES, UnhandledPromiseRejection, MaxListenersExceededWarning, JavaScript heap out of memory.

Node errors split into system (libuv, prefixed E*), V8 (heap, stack), and Node-specific (ERR_*). Most production issues: ESM/CJS interop (ERR_REQUIRE_ESM), port conflicts (EADDRINUSE), unhandled promise rejections (now crash by default), and heap exhaustion on streaming JSON parsing. `--max-old-space-size` is a band-aid; find the leak.

Network (1)

Configuration (1)

Runtime (1)

Official docs
https://nodejs.org/api/errors.html
Support
https://nodejs.org/en/get-involved/

Related services