Errors
Node.js errors
ERR_* codes, module resolution and runtime errors.
462 entries1 written pages
Showing 301 to 350 of 462Source: Node.js documentation
| Code | Error | Category | Page |
|---|---|---|---|
| ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS | Invalid options were provided for a performance measure. | Node.js error codes | Reference |
| ERR_PROTO_ACCESS | Accessing Object.prototype.__proto__ has been forbidden using --disable-proto=throw. Object.getPrototypeOf and Object.setPrototypeOf should be used to get and set the prototype of an object. | Node.js error codes | Reference |
| ERR_PROXY_INVALID_CONFIG | Failed to proxy a request because the proxy configuration is invalid. | Node.js error codes | Reference |
| ERR_PROXY_TUNNEL | Failed to establish proxy tunnel when NODE_USE_ENV_PROXY or --use-env-proxy is enabled. | Node.js error codes | Reference |
| ERR_QUIC_APPLICATION_ERROR | A QUIC application error occurred. | Node.js error codes | Reference |
| ERR_QUIC_CONNECTION_FAILED | Establishing a QUIC connection failed. | Node.js error codes | Reference |
| ERR_QUIC_ENDPOINT_CLOSED | A QUIC Endpoint closed with an error. | Node.js error codes | Reference |
| ERR_QUIC_OPEN_STREAM_FAILED | Opening a QUIC stream failed. | Node.js error codes | Reference |
| ERR_QUIC_STREAM_ABORTED | The Node.js error code for a QuicError thrown to abort a QUIC stream or session with an explicit application or transport error code. | Node.js error codes | Reference |
| ERR_QUIC_STREAM_RESET | A QUIC stream was reset by the peer. The error includes the reset code provided by the peer. | Node.js error codes | Reference |
| ERR_QUIC_TRANSPORT_ERROR | A QUIC transport error occurred. | Node.js error codes | Reference |
| ERR_QUIC_VERSION_NEGOTIATION_ERROR | A QUIC session failed because version negotiation is required. | Node.js error codes | Reference |
| ERR_REQUIRE_ASYNC_MODULE | When trying to require() an ES Module, the module turns out to be asynchronous. That is, it contains top-level await. | Node.js error codes | Reference |
| ERR_REQUIRE_CYCLE_MODULE | When trying to require() an ES Module, a CommonJS to ESM or ESM to CommonJS edge participates in an immediate cycle. This is not allowed because ES Modules cannot be evaluated while they are already being evaluated. | Node.js error codes | Reference |
| ERR_REQUIRE_ESM_RACE_CONDITION | An attempt was made to require() an ES Module while another import() call was already in progress to load it asynchronously. | Node.js error codes | Reference |
| ERR_SCRIPT_EXECUTION_INTERRUPTED | Script execution was interrupted by SIGINT (For example, Ctrl+C was pressed.) | Node.js error codes | Reference |
| ERR_SCRIPT_EXECUTION_TIMEOUT | Script execution timed out, possibly due to bugs in the script being executed. | Node.js error codes | Reference |
| ERR_SERVER_ALREADY_LISTEN | The server.listen() method was called while a net.Server was already listening. This applies to all instances of net.Server, including HTTP, HTTPS, and HTTP/2 Server instances. | Node.js error codes | Reference |
| ERR_SERVER_NOT_RUNNING | The server.close() method was called when a net.Server was not running. This applies to all instances of net.Server, including HTTP, HTTPS, and HTTP/2 Server instances. | Node.js error codes | Reference |
| ERR_SINGLE_EXECUTABLE_APPLICATION_ASSET_NOT_FOUND | A key was passed to single executable application APIs to identify an asset, but no match could be found. | Node.js error codes | Reference |
| ERR_SOCKET_ALREADY_BOUND | An attempt was made to bind a socket that has already been bound. | Node.js error codes | Reference |
| ERR_SOCKET_BAD_BUFFER_SIZE | An invalid (negative) size was passed for either the recvBufferSize or sendBufferSize options in dgram.createSocket(). | Node.js error codes | Reference |
| ERR_SOCKET_BAD_PORT | An API function expecting a port >= 0 and < 65536 received an invalid value. | Node.js error codes | Reference |
| ERR_SOCKET_BAD_TYPE | An API function expecting a socket type (udp4 or udp6) received an invalid value. | Node.js error codes | Reference |
| ERR_SOCKET_BUFFER_SIZE | While using dgram.createSocket(), the size of the receive or send Buffer could not be determined. | Node.js error codes | Reference |
| ERR_SOCKET_CANNOT_SEND | Data could not be sent on a socket. | Legacy Node.js error codes | Reference |
| ERR_SOCKET_CLOSED | An attempt was made to operate on an already closed socket. | Node.js error codes | Reference |
| ERR_SOCKET_CLOSED_BEFORE_CONNECTION | When calling net.Socket.write() on a connecting socket and the socket was closed before the connection was established. | Node.js error codes | Reference |
| ERR_SOCKET_CONNECTION_TIMEOUT | The socket was unable to connect to any address returned by the DNS within the allowed timeout when using the family autoselection algorithm. | Node.js error codes | Reference |
| ERR_SOCKET_DGRAM_IS_CONNECTED | A dgram.connect() call was made on an already connected socket. | Node.js error codes | Reference |
| ERR_SOCKET_DGRAM_NOT_CONNECTED | A dgram.disconnect() or dgram.remoteAddress() call was made on a disconnected socket. | Node.js error codes | Reference |
| ERR_SOCKET_DGRAM_NOT_RUNNING | A call was made and the UDP subsystem was not running. | Node.js error codes | Reference |
| ERR_SOCKET_HANDLE_ADOPTED | An operation was attempted on a BoundSocket that had already been adopted by a net.Server or net.Socket, or transferred to another thread. Once a bound socket is adopted or transferred, its address() and close() methods can no longer be used. | Node.js error codes | Reference |
| ERR_SOURCE_MAP_CORRUPT | The source map could not be parsed because it does not exist, or is corrupt. | Node.js error codes | Reference |
| ERR_SOURCE_MAP_MISSING_SOURCE | A file imported from a source map was not found. | Node.js error codes | Reference |
| ERR_SOURCE_PHASE_NOT_DEFINED | The provided module import does not provide a source phase imports representation for source phase import syntax import source x from 'x' or import.source(x). | Node.js error codes | Reference |
| ERR_SQLITE_ERROR | An error was returned from SQLite. | Node.js error codes | Reference |
| ERR_SRI_PARSE | A string was provided for a Subresource Integrity check, but was unable to be parsed. Check the format of integrity attributes by looking at the Subresource Integrity specification. | Node.js error codes | Reference |
| ERR_STDERR_CLOSE | An attempt was made to close the process.stderr stream. By design, Node.js does not allow stdout or stderr streams to be closed by user code. | Legacy Node.js error codes | Reference |
| ERR_STDOUT_CLOSE | An attempt was made to close the process.stdout stream. By design, Node.js does not allow stdout or stderr streams to be closed by user code. | Legacy Node.js error codes | Reference |
| ERR_STREAM_ALREADY_FINISHED | A stream method was called that cannot complete because the stream was finished. | Node.js error codes | Reference |
| ERR_STREAM_CANNOT_PIPE | An attempt was made to call stream.pipe() on a Writable stream. | Node.js error codes | Reference |
| ERR_STREAM_DESTROYED | A stream method was called that cannot complete because the stream was destroyed using stream.destroy(). | Node.js error codes | Reference |
| ERR_STREAM_ITER_MISSING_FLAG | A stream/iter API was used without the --experimental-stream-iter CLI flag enabled. | Node.js error codes | Reference |
| ERR_STREAM_NULL_VALUES | An attempt was made to call stream.write() with a null chunk. | Node.js error codes | Reference |
| ERR_STREAM_PREMATURE_CLOSE | An error returned by stream.finished() and stream.pipeline(), when a stream or a pipeline ends non gracefully with no explicit error. | Node.js error codes | Reference |
| ERR_STREAM_PUSH_AFTER_EOF | An attempt was made to call stream.push() after a null(EOF) had been pushed to the stream. | Node.js error codes | Reference |
| ERR_STREAM_READ_NOT_IMPLEMENTED | Used when an attempt is made to use a readable stream that has not implemented readable._read(). | Legacy Node.js error codes | Reference |
| ERR_STREAM_UNABLE_TO_PIPE | An attempt was made to pipe to a closed or destroyed stream in a pipeline. | Node.js error codes | Reference |
| ERR_STREAM_UNSHIFT_AFTER_END_EVENT | An attempt was made to call stream.unshift() after the 'end' event was emitted. | Node.js error codes | Reference |
Other families: JavaScript, npm, React, Next.js, TypeScript, Vite, webpack, Jest