Last active
June 2, 2025 10:17
-
Star
(732)
You must be signed in to star a gist -
Fork
(117)
You must be signed in to fork a gist
-
-
Save t3dotgg/a486c4ae66d32bf17c09c73609dacc5b to your computer and use it in GitHub Desktop.
Theo's preferred way of handling try/catch in TypeScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Types for the result object with discriminated union | |
type Success<T> = { | |
data: T; | |
error: null; | |
}; | |
type Failure<E> = { | |
data: null; | |
error: E; | |
}; | |
type Result<T, E = Error> = Success<T> | Failure<E>; | |
// Main wrapper function | |
export async function tryCatch<T, E = Error>( | |
promise: Promise<T>, | |
): Promise<Result<T, E>> { | |
try { | |
const data = await promise; | |
return { data, error: null }; | |
} catch (error) { | |
return { data: null, error: error as E }; | |
} | |
} |
Not everything needs to be a monad like rust.
This is js where u have the power to return unions.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Alright folks, good news for everyone using or interested in this safe-wrapper package! I've migrated the library to TypeScript for better type safety and developer experience. Quick shoutout to @t3dotgg for creating t3-chat (powered by Claude 4 Opus) which pretty much did all the heavy lifting on the migration 😶🌫️
It works with both async and sync functions, supports custom error types, and lets you plug in transformers to format errors just the way you need.
Check it out on github and do suggest improvements, open issues or create PRs. All contributions are welcome!