Typescript error as value
Motivation
Any error-as-values library in typescript is liable for being used a lot within any project which adds it, so making the API as convenient as humanly possible was my primary concern.
The alternative typescript libraries for achieving errors-as-values all seem to have verbose and cumbersome APIs, often wrapping all returns with class instances, and asking you to call method on them such as "isOk" or "isErr" to function.
Instead of this, we leverage typescript's discriminated unions to handle most of the heavy lifting for us.
To further decrease friction for using this in your project, you can also import the functions and types of this package into your project's global scope in a convenient way.
Install
yarn install ts-error-as-value
(Optionally) Make functions and types global
import "ts-error-as-value/lib/globals";
This will make the functions ResultIs.success, ResultIs.failure and withResult, as well as the types Success, Failure and Result globally available
ResultIs.success and ResultIs.failure - Basic Usage
Creating Success
and Failure
result objects
const { data, error } = ResultIs.success("Hello");
if (error) {
} else {
}
or
const {data, error} = ResultIs.failure(new Error("Error"));
if (error) {
} else {
}
Wrapping the returns from functions with ResultIs.failure
for errors, and ResultIs.success
for non-error so that the function calling it receives a Result
type.
const fnWithResult = (): Result<string, Error> => {
if ("" !== "") {
return ResultIs.success("hello");
}
return ResultIs.failure(new Error("Method failed"));
};
const { data, error } = fnWithResult();
if (error) {
} else {
}
Or with promises:
const fnWithResult = async (): Promise<Result<string, Error>> => {
if ("" !== "") {
return ResultIs.success("hello");
}
return ResultIs.failure(new Error("Method failed"));
};
const callsFnThatCallsFnWithResult = async () => {
const { data, error, errorStack } = (await fnWithResult())
if (error) {
return ResultIs.failure(error);
}
return ResultIs.success(data);
};
callsFnThatCallsFnWithResult();
Chaining methods on a Result
class NewError extends Error {}
const fnWithResult = (): Result<string, Error> => {
if ("" !== "") {
return ResultIs.success("hello");
}
return ResultIs.failure(new Error("Method failed"));
};
const callsFnThatCallsFnWithResult = async (): Promise<Result<boolean, NewError>> => {
const { data, error } = fnWithResult()
.mapErr(error => new NewError("Failed to call fnWithResult"))
.andThen(data => {
return data === "hello";
});
if (error) {
return ResultIs.failure(error);
}
return ResultIs.success(data);
};
withResult
One downside to using a system where errors are treated as values in javascript is that you have no control over whether a third party dependency will throw errors or not. As a result, we need a way to wrap functions that can throw errors and force them to return a result for us.
withResult is a function which wraps another function and returns a Failure
result if the wrapped function throws an error,
or a Success
result if the wrapped function does not.
import somePkg from "package-that-throws-errors";
const doStuff = withResult(somePkg.doStuff);
const { data, error } = await doStuff("hello");
if (error) {
}
API
export type Failure<E extends Error = Error> = {
data: null,
error: E,
successOrThrow(): void,
successOrDefault<D>(defaultValue: D): D,
transformOnFailure<E2 extends Error>(fn: (fail: E) => E2): Failure<E2>,
transformOnSuccess<N>(fn: (data: never) => N): Failure<E>
};
export type Success<T> = {
data: T,
error: null,
successOrThrow(): T,
successOrDefault<D>(defaultValue: D): T,
transformOnFailure<E2 extends Error>(fn: (fail: never) => E2): Success<T>,
transformOnSuccess<N>(fn: (data: T) => N): Success<N>
};
export type Result<
T, E extends Error = Error
> = Failure<E> | Success<T>;
export type ResultIs = {
success<T>(data: T): Success<T>,
failure<E extends Error>(failure: E): Failure<E>
};
function withResult<T, E extends Error, R>(
fn: (...args: T[]) => Promise<R>
): (
...args: T[]
) => Promise<Result<R, E>>
function withResult<T, E extends Error, R>(
fn: (...args: T[]) => R
): (
...args: T[]
) => Result<R, E>