Stop Swallowing Your Errors: Error Cause Chaining in Node.js
Every time you wrap an error in another error, you bury the original stack trace. Error.cause is the ES2022 feature that preserves the full chain, and it will save you hours of production debugging.
You are debugging a production incident. A user’s payment failed. The logs show a single line: Error: Payment processing failed. No database query. No network call. No upstream service name. No hint about what actually broke. Somewhere in the call stack, a lower-level error was caught, wrapped in a generic message, and rethrown. The original error, the one with the useful stack trace and the actionable message, is gone.
This is not an edge case. It happens in every codebase that grows past a single file. You catch an error from a database driver, wrap it in a business-logic error, and throw it up to the next layer. That next layer wraps it again. By the time the error reaches your global handler, the original cause is buried under layers of generic messages, and you are left staring at Error: Something went wrong with no way to trace back to the SQL query that failed or the HTTP response code that came back wrong.
JavaScript has had a solution since ES2022. It is Error.cause, and it works in every modern Node.js version (16.9 and later), every shipping browser, and TypeScript 4.7+. It is one parameter on the Error constructor that preserves the full error chain, and most teams still do not use it.
The problem: wrapping errors destroys context
Every production Node.js service eventually does something like this:
async function processOrder(orderId: string) {
try {
await chargePayment(orderId);
} catch (err) {
throw new Error('Payment processing failed');
}
}
The caller of processOrder sees Error: Payment processing failed. The err that had the actual details (a timeout from the payment gateway, an invalid response code, a network DNS failure) is gone. The original stack trace is lost. The HTTP status code that would tell you whether to retry is lost. The correlation ID that lives on the original error is lost.
Before Error.cause, teams hacked around this in several creative ways:
Hack 1: String concatenation on the message.
catch (err) {
throw new Error(`Payment processing failed: ${err.message}`);
}
This preserves the message but destroys the stack trace. You lose the file and line number where the database call failed, the call chain that led there, and any structured metadata on the error. If err had a statusCode property or a retryable flag, you lost those too.
Hack 2: Attach the original error as a property.
catch (err) {
const wrapped = new Error('Payment processing failed');
wrapped.originalError = err;
throw wrapped;
}
This works but only if every consumer knows about your custom originalError property. Your logging library does not know about it. Your error monitoring service does not know about it. Your team’s next hire does not know about it. It is a convention that requires documentation, training, and code review to survive. In practice, it survives for about two weeks before someone forgets.
Hack 3: Pass through without wrapping.
async function processOrder(orderId: string) {
await chargePayment(orderId);
}
This preserves the original error but leaks implementation details. The caller now sees Error: timeout reading from payments.example.com:443 from a function called processOrder. The abstraction is broken. If you later switch payment providers, every caller’s error-handling logic breaks because the error messages changed.
None of these are good. Error.cause solves all of them.
Error.cause is a one-line fix
The cause option was added to the Error constructor in ES2022. It accepts any value (usually another Error instance) and stores it in a .cause property. The property is not printed in the default stack trace, but every serious error monitoring tool (Sentry, Datadog, OpenTelemetry) reads it natively.
Here is the same processOrder function with cause:
async function processOrder(orderId: string) {
try {
await chargePayment(orderId);
} catch (err) {
throw new Error('Payment processing failed', { cause: err });
}
}
That is the entire change. One parameter. The original error is preserved intact, with its full stack trace, its message, its custom properties, and any nested cause of its own.
When you log this error, you get:
Error: Payment processing failed
at processOrder (/app/orders.ts:12:11)
... (outer stack trace)
cause: TimeoutError: Connection timed out after 5000ms
at chargePayment (/app/payments.ts:42:17)
... (inner stack trace)
cause: Error: connect ECONNREFUSED 10.0.1.5:443
at TLSSocket.onConnectEnd (node:_tls_wrap:1702:19)
... (innermost stack trace)
Three layers deep. Each layer preserved. No string formatting. No custom properties. No lost context.
The pattern: wrap at domain boundaries
The real power of Error.cause emerges when you establish a consistent wrapping convention. The rule is simple: wrap errors at every domain boundary, and always use cause.
Domain boundaries in a typical Node.js service include:
- Database layer to repository layer: wrap a driver-level error with a persistence error.
- Repository layer to service layer: wrap a persistence error with a business-logic error.
- Service layer to controller layer: wrap a business error with an HTTP-specific error.
- Controller layer to global handler: add request context as a cause or aggregated error.
- External API client: wrap network or protocol errors with a domain-specific error.
Here is a practical example with a user profile service:
// Database/Repository layer
async function findUserById(id: string): Promise<User> {
try {
return await db.query('SELECT * FROM users WHERE id = $1', [id]);
} catch (err) {
throw new Error('Database query failed', { cause: err });
}
}
// Service layer
async function getUserProfile(userId: string): Promise<UserProfile> {
try {
const user = await findUserById(userId);
return { id: user.id, name: user.name, email: user.email };
} catch (err) {
throw new Error('Failed to retrieve user profile', { cause: err });
}
}
// Controller layer
app.get('/api/users/:id', async (req, res) => {
try {
const profile = await getUserProfile(req.params.id);
res.json(profile);
} catch (err) {
// err.cause.cause is the original DB error
reportError(err);
res.status(500).json({ error: 'Internal server error' });
}
});
When the database goes down, the error chain reads:
Error: Failed to retrieve user profile
at getUserProfile
cause: Error: Database query failed
at findUserById
cause: Error: connect ECONNREFUSED /var/run/postgresql/.s.PGSQL.5432
at ...
Every layer added context. Every layer preserved the previous layer’s information. The controller knows exactly what happened, and if it needs to check whether the root cause is a connection error (to decide whether to retry), it can walk the .cause chain.
Walking the cause chain programmatically
The real benefit of Error.cause becomes visible when you need to make decisions based on the root cause. A retry policy, for example, should only retry on transient errors. With cause, you can look through the chain:
function isRetryable(error: Error): boolean {
let current: unknown = error;
while (current instanceof Error) {
if (
current.message.includes('ECONNREFUSED') ||
current.message.includes('ETIMEDOUT') ||
current.message.includes('ECONNRESET') ||
current.name === 'TimeoutError'
) {
return true;
}
current = (current as any).cause;
}
return false;
}
Or, more robustly, check for a property on the error:
interface RetryableError {
retryable: boolean;
cause?: unknown;
}
function isRetryable(error: unknown): boolean {
let current: unknown = error;
while (current instanceof Error) {
if ((current as RetryableError).retryable) {
return true;
}
current = (current as RetryableError).cause;
}
return false;
}
This allows a database driver to set retryable: true on its errors, and your retry logic to find that flag no matter how many times the error was wrapped. No fragile string matching. No instanceof checks that break when you swap libraries.
Structured logging with cause chains
If you use structured logging (Pino, Bunyan, Winston), you already have correlation IDs on every log line. The missing piece is including the full error chain. Here is a logging utility that extracts the entire cause chain:
import pino from 'pino';
const logger = pino();
function flattenErrorChain(error: Error): object[] {
const chain: object[] = [];
let current: unknown = error;
while (current instanceof Error) {
chain.push({
message: current.message,
name: current.name,
stack: current.stack,
...extractCustomProps(current),
});
current = (current as any).cause;
}
return chain;
}
function extractCustomProps(error: Error): Record<string, unknown> {
const props: Record<string, unknown> = {};
for (const key of Object.getOwnPropertyNames(error)) {
if (key !== 'message' && key !== 'stack' && key !== 'name' && key !== 'cause') {
props[key] = (error as any)[key];
}
}
return props;
}
// Usage
try {
await processOrder('ord_123');
} catch (err) {
logger.error({ err, causeChain: flattenErrorChain(err) }, 'Order processing failed');
}
The log output includes the full chain as a JSON array, which error monitoring tools can parse and display as a dependency graph. Sentry, for example, has native support for cause and displays the chain as linked issues.
Custom error classes that support cause
For TypeScript projects, the pattern is even cleaner with custom error classes:
export class AppError extends Error {
constructor(
message: string,
public readonly statusCode: number = 500,
options?: { cause?: Error; retryable?: boolean }
) {
super(message, options);
this.name = 'AppError';
}
}
export class NotFoundError extends AppError {
constructor(resource: string, options?: { cause?: Error }) {
super(`${resource} not found`, 404, options);
this.name = 'NotFoundError';
}
}
export class ValidationError extends AppError {
constructor(
message: string,
options?: { cause?: Error }
) {
super(message, 400, options);
this.name = 'ValidationError';
}
}
Now every layer can wrap with typed errors:
async function getAccount(id: string) {
try {
return await db.query('SELECT * FROM accounts WHERE id = $1', [id]);
} catch (err) {
throw new AppError('Failed to query accounts', 500, {
cause: err,
retryable: true,
});
}
}
The error monitoring tool sees retryable: true on the outer error. The cause preserves the database-level stack trace. Everyone wins.
The three traps most teams hit
Trap 1: Circular cause chains.
If you accidentally set err.cause = err, you create an infinite loop. This is rare but devastating. Always validate that options.cause is not the same object as the error you are creating:
catch (err) {
// BAD: creates circular reference
throw new Error('failed', { cause: err });
// Also BAD if err is the error you're creating
const myErr = new Error('failed');
myErr.cause = myErr; // circular!
throw myErr;
}
JavaScript does not protect you from this. Your log serializer will either crash or hang when it tries to JSON.stringify the chain.
Trap 2: Losing non-Error causes.
The cause option accepts any value. Some libraries pass strings or plain objects:
throw new Error('Validation failed', { cause: 'email is invalid' });
This defeats the purpose. Always pass an Error instance as the cause, so you preserve the stack trace and type information. If you are wrapping an exception from a language that does not throw Error instances (some HTTP libraries throw strings), normalize it first:
catch (err) {
const cause = err instanceof Error ? err : new Error(String(err));
throw new AppError('Request failed', 500, { cause });
}
Trap 3: Forgetting that AggregateError also supports cause.
The AggregateError constructor (used by Promise.any and the Scheduler API) also accepts cause:
try {
await Promise.any([unreliableService1(), unreliableService2()]);
} catch (err) {
if (err instanceof AggregateError) {
throw new Error('All services failed', { cause: err });
}
}
The AggregateError.errors array preserves every individual rejection, and the outer cause preserves that as a single node in the chain. When you walk the chain, you need to handle this case:
function flattenErrorChain(error: Error): object[] {
const chain: object[] = [];
let current: unknown = error;
while (current instanceof Error) {
const entry: any = {
message: current.message,
name: current.name,
};
if (current instanceof AggregateError) {
entry.errors = current.errors.map((e: unknown) =>
e instanceof Error ? flattenErrorChain(e) : e
);
}
chain.push(entry);
current = (current as any).cause;
}
return chain;
}
What to do on Monday
The migration path is short enough to do in one afternoon:
-
Find every
catchblock that wraps an error. The pattern iscatch(err) { throw new SomeError('message') }without passingerr. Add{ cause: err }to the constructor call. -
Standardize your error classes. Create one base
AppErrorclass that accepts options includingcause. Extend it for each error category. This makes the pattern automatic instead of a judgment call. -
Update your logging utility. Add a
flattenErrorChainfunction that extracts the full chain. Include it in every error log. -
Configure your error monitoring tool. Sentry, Datadog, and New Relic all support
causenatively. Make sure it is enabled. If you use a custom monitoring setup, walk the cause chain in your error reporter and send each layer as a separate span or event. -
Remove all
originalError,innerError,previousErrorcustom properties. They are dead code now. Every tool readscause. The convention is standard.
The one-line habit: every time you write throw new Error(...) in a catch block, add { cause: err }. It adds five characters and saves hours of debugging. Do not think about whether the consumer will use it. Just do it. The cost is zero. The payoff comes the night a payment fails and the chain tells you exactly which connection dropped.
A note from Yojji
Error handling that works in production (cause chains, structured logging, retry classification, and instrumentation that actually helps you find the root cause) is the difference between a 3am incident call that takes twenty minutes and one that takes twenty seconds. It is the kind of unglamorous backend infrastructure Yojji has been shipping since 2016.
Yojji is an international custom software development company with offices in Europe, the US, and the UK. Their teams work across the JavaScript ecosystem (Node.js, TypeScript, React), cloud platforms, and microservices architecture. They run dedicated senior outstaffed teams alongside full-cycle product engagements covering discovery, design, development, QA, and DevOps.
If your team spends more time debugging error chains than building features, Yojji is worth a conversation.