Error Handling with wellcrafted trySync and tryAsync
When to Apply This Skill
Use this pattern when you need to:
- Replace recoverable
try-catchblocks withtrySyncortryAsync. - Handle fallback success paths via
Ok(...)and propagate failures withErr(...). - Wrap caught exceptions as
causefor typed domain error constructors. - Refactor nested error branches into immediate-return linear control flow.
- Convert handler failures into HTTP status responses with explicit guards.
References
Load these on demand based on what you're working on:
- If working with wrapping boundaries, minimal vs extended wrapping, or immediate-return control flow, read references/wrapping-patterns.md
- If working with toast notifications for errors (
toastOnError,extractErrorMessagein UI), read references/toast-on-error.md - If working with real-world codebase examples and wrapping scenario guidelines, read references/real-world-examples.md
- If working with HTTP route handlers and status-response error conversion, read references/http-handlers.md
- If working with workspace actions (
defineQuery/defineMutation— when to throw vs. returnErr, how remote callers see your errors,ActionFailedsemantics), read ../workspace-api/references/action-return-shapes.md
Use trySync/tryAsync Instead of try-catch for Graceful Error Handling
When handling errors that can be gracefully recovered from, use trySync (for synchronous code) or tryAsync (for asynchronous code) from wellcrafted instead of traditional try-catch blocks. This provides better type safety and explicit error handling.
Related Skills: See
services-layerskill fordefineErrorspatterns and service architecture. Seequery-layerskill for error transformation toWhisperingError.
The Pattern
import { trySync, tryAsync, Ok, Err } from 'wellcrafted/result';
// SYNCHRONOUS: Use trySync for sync operations
const { data, error } = trySync({
try: () => {
const parsed = JSON.parse(jsonString);
return validateData(parsed); // Automatically wrapped in Ok()
},
catch: (e) => {
// Gracefully handle parsing/validation errors
console.log('Using default configuration');
return Ok(defaultConfig); // Return Ok with fallback
},
});
// ASYNCHRONOUS: Use tryAsync for async operations
await tryAsync({
try: async () => {
const child = new Child(session.pid);
await child.kill();
console.log(`Process killed successfully`);
},
catch: (e) => {
// Gracefully handle the error
console.log(`Process was already terminated`);
return Ok(undefined); // Return Ok(undefined) for void functions
},
});
// Both support the same catch patterns
const syncResult = trySync({
try: () => riskyOperation(),
catch: (error) => {
// For recoverable errors, return Ok with fallback value
return Ok('fallback-value');
// For unrecoverable errors, pass the raw cause — the constructor handles extractErrorMessage
return CompletionError.ConnectionFailed({ cause: error });
},
});
Key Rules
- Choose the right function - Use
trySyncfor synchronous code,tryAsyncfor asynchronous code - Always await tryAsync - Unlike try-catch, tryAsync returns a Promise and must be awaited
- trySync returns immediately - No await needed for synchronous operations
- Match return types - If the try block returns
T, the catch should returnOk<T>for graceful handling - Use Ok(undefined) for void - When the function returns void, use
Ok(undefined)in the catch - Return Err for propagation - Use custom error constructors that return
Errwhen you want to propagate the error - Transform cause in the constructor, not the call site - When wrapping a caught error, pass the raw error as
cause: unknownand let thedefineErrorsconstructor callextractErrorMessage(cause)inside its message template. Don't callextractErrorMessageat the call site. This centralizes message extraction where the message is composed:
// ✅ GOOD: cause: error at call site, extractErrorMessage in constructor
catch: (error) => CompletionError.ConnectionFailed({ cause: error })
// ❌ BAD: extractErrorMessage at call site, string passed to constructor
catch: (error) => CompletionError.ConnectionFailed({ underlyingError: extractErrorMessage(error) })
- CRITICAL: Wrap destructured errors with Err() - When you destructure
{ data, error }from tryAsync/trySync, theerrorvariable is the raw error value, NOT wrapped inErr. You must wrap it before returning:
// WRONG - error is just the raw error value, not a Result
const { data, error } = await tryAsync({...});
if (error) return error; // TYPE ERROR: Returns raw error, not Result
// CORRECT - wrap with Err() to return a proper Result
const { data, error } = await tryAsync({...});
if (error) return Err(error); // Returns Err<CustomError>
This is different from returning the entire result object:
// This is also correct - userResult is already a Result type
const userResult = await tryAsync({...});
if (userResult.error) return userResult; // Returns the full Result
Examples
// SYNCHRONOUS: JSON parsing with fallback
const { data: config } = trySync({
try: () => JSON.parse(configString),
catch: (e) => {
console.log('Invalid config, using defaults');
return Ok({ theme: 'dark', autoSave: true });
},
});
// SYNCHRONOUS: File system check
const { data: exists } = trySync({
try: () => fs.existsSync(path),
catch: () => Ok(false), // Assume doesn't exist if check fails
});
// ASYNCHRONOUS: Graceful process termination
await tryAsync({
try: async () => {
await process.kill();
},
catch: (e) => {
console.log('Process already dead, continuing...');
return Ok(undefined);
},
});
// ASYNCHRONOUS: File operations with fallback
const { data: content } = await tryAsync({
try: () => readFile(path),
catch: (e) => {
console.log('File not found, using default');
return Ok('default content');
},
});
// EITHER: Error propagation (works with both)
// Pass the raw caught error as cause — the defineErrors constructor calls extractErrorMessage
const { data, error } = await tryAsync({
try: () => criticalOperation(),
catch: (error) =>
CompletionError.ConnectionFailed({ cause: error }),
});
if (error) return Err(error);
Consuming Result values — destructure error explicitly
When reading a Result<T, E> that a library (or your own code) returns
— like table.get(id), tryAsync(...), or a service method — always
destructure both data and error and check error on its own line,
even when both paths should produce the same action.
// ✅ GOOD — error is destructured and checked explicitly
const { data: row, error } = table.get(id);
if (error) {
console.warn('[context] corrupted row:', error.message);
return null;
}
if (row === null) return null; // legitimate absence
use(row); // row: TRow
// ❌ BAD — relies on "data is null if error exists" by coincidence
const { data: row } = table.get(id); // error silently swallowed
if (row === null) return null;
use(row);
Why:
- Reading intent: the
if (error)line tells future readers the error case is considered, not forgotten. - Distinct handling opportunity: even if you currently do the same thing on both branches, splitting the checks gives you a place to log / toast / retry on errors without rewriting the control flow.
- Avoids coincidental behavior: "data is null when error exists"
is true in wellcrafted's
Result, but relying on that fact at the call site ties your code to the representation, not the contract.
When combining conditions is OK
If both cases genuinely produce the same action (no log, no toast,
no retry, no distinction worth writing down), one combined condition
is fine — as long as error is still destructured:
// ✅ OK — error destructured, both cases deliberately collapsed
const { data: row, error } = table.get(id);
if (error || row === null) continue; // skip in both cases
use(row);
The destructure matters; it signals you thought about the error case
and chose to collapse it. The anti-pattern is destructuring only
data and hoping for the best.
When to split the checks
Split into two explicit checks when the handling differs:
const { data: row, error } = table.get(id);
if (error) {
logger.warn('row corrupted, replacing', { id, error });
await replaceWithDefault(id);
return;
}
if (row === null) {
await createMissingRow(id);
return;
}
use(row);
This is the form to prefer by default — collapse back only when there's truly nothing distinct to say.
When to Use trySync vs tryAsync vs try-catch
-
Use trySync when:
- Working with synchronous operations (JSON parsing, validation, calculations)
- You need immediate Result types without promises
- Handling errors in synchronous utility functions
- Working with filesystem sync operations
-
Use tryAsync when:
- Working with async/await operations
- Making network requests or database calls
- Reading/writing files asynchronously
- Any operation that returns a Promise
-
Use traditional try-catch when:
- In module-level initialization code where you can't await
- For simple fire-and-forget operations
- When you're outside of a function context
- When integrating with code that expects thrown exceptions
Logging errors
Typed errors are structured values, so they're also what the wellcrafted/logger wants. log.warn / log.error take a typed error unary — no message argument, no format string. The error owns its message, and the log sink gets the full object (name, fields, cause) alongside it.
The canonical pattern
Mint the typed error inside catch:, route through Result, and log at the boundary with tapErr. The caller picks the level (.warn for recoverable, .error for loud) at the pipeline site — matching Rust's tracing::warn!(?err) convention, where level lives at the call site and never on the error variant.
import { createLogger, tapErr } from 'wellcrafted/logger';
import { tryAsync } from 'wellcrafted/result';
const log = createLogger('markdown-materializer');
const result = await tryAsync({
try: () => writeTable(path),
catch: (cause) => MarkdownError.TableWrite({ path, cause }),
}).then(tapErr(log.warn)); // Result unchanged; error logged on the Err branch.
For direct error logging (no Result in play), pass the factory call directly — log.warn / log.error unwrap the Err wrapper that defineErrors factories return:
log.warn(MarkdownError.TableWrite({ path, cause }));
Why no log.error(message, error)?
Level is context-dependent (same error can be warn on a retry, error on the last attempt) and message lives on the error variant. That's the whole point of defineErrors — the variant's message: template encodes the "what operation failed" clause. Duplicating it at the call site would drift and rot.
Testing with memorySink
Never assert on console output. Use memorySink() and inspect the events array directly:
import { createLogger, memorySink } from 'wellcrafted/logger';
test('logs a decrypt failure when the keyring is missing the version', () => {
const { sink, events } = memorySink();
const log = createLogger('encrypted-kv', sink);
// ... trigger the path ...
expect(events).toContainEqual(
expect.objectContaining({
level: 'warn',
data: expect.objectContaining({ name: 'DecryptFailed' }),
}),
);
});
See the logging skill for level semantics, sink composition, and the JSONL file sink.