@budarin/json-rpc-interface
v1.0.4
Published
Package with JSON RPC interface in typescript
Downloads
4
Readme
json-rpc-interface
Package with JSON RPC interface in typescript.
Installation
yarn add @budarin/json-rpc-interface
Usage
import { ErrorOrResult } from '@budarin/json-rpc-interface';
function tryToDivide(a: number, b: number): ResultOrError<number> {
try {
return { result: a / b };
} catch (e) {
return {
error: e instanceof Error ? e.message : 'Unexpected error',
stack: e.stack,
};
}
}
somwhere in code
const divided = tryToDivide(1, 0);
if (divided.error) {
console.error(divided.error);
return;
}
console.log(divided.result);
Type definition
type JsonRpcError<U> = {
message: string;
data?: U;
stack?: string;
};
type ResultOrError<T, E = any> =
| {
result: DeepReadonly<T>;
error?: never;
}
| {
result?: never;
error: DeepReadonly<JsonRpcError<E>>;
};
License
MIT