Skip to content

Instantly share code, notes, and snippets.

@DarkAng3L
Forked from t3dotgg/try-catch.ts
Last active March 25, 2025 19:40
Show Gist options
  • Save DarkAng3L/0a7110ab795961b4c37369ad0786f22e to your computer and use it in GitHub Desktop.
Save DarkAng3L/0a7110ab795961b4c37369ad0786f22e to your computer and use it in GitHub Desktop.
Handling try/catch in TypeScript
// Types for the result object with discriminated union
type Success<T> = [null, T];
type Failure<E> = [E, null];
type Result<T, E = Error> = Success<T> | Failure<E>;
export async function tryCatch<T, E extends Error = Error>(
promise: Promise<T>
): Promise<Result<T, E> {
try {
const result = await promise;
return [null, result];
} catch (error) {
return [error as E, null];
}
}
// improved version with optional param to only catch specified errors
async function catchError<T, E extends new (message?: string) => Error>(
promise: Promise<T>,
errorsToCatch?: E[]
): Promise<[undefined, T] | [InstanceType<E>, undefined]> {
return promise
.then((data): [undefined, T] => {
return [undefined, data];
})
.catch((error): [InstanceType<E>, undefined] => {
if (errorsToCatch === undefined) {
return [error, undefined];
}
if (errorsToCatch.some((e) => error instanceof e)) {
return [error, undefined];
}
throw error;
});
}
/**
* Ex to only catch CustomError:
* class CustomError extends Error {
* name = 'CustomError';
* message = 'ERROR: Custom message';
* extraProp = false;
* }
*
* const [error, resp] = await catchError(somePromise, [CustomError]);
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment