6.0.2 • Published 3 months ago

rust-ts v6.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

rust-ts

NPM Build Docs

TypeScript implementations of Rust std modules and some rust-like wrappers.

This doc only covers basic usage examples, check the documentation for all methods and details.

Documentation

Contents

Installation

# npm
npm i rust-ts
# yarn
yarn add rust-ts
# pnpm
pnpm i rust-ts

Key differences

All _then/_else callback variants have been combined with their value counterparts. For example, if you wanted to do:

Some(42).unwrap_or_else(() => 5);

You can simply do:

Some(42).unwrap_or(() => 5);
Some(42).unwrap_or(5);

match and if let implementations are also a bit different.

Rust:

let num = Some(42);
if let Some(x) = num {...}

let res = Ok(10);
match res {
    Ok(x) => {...},
    Err(e) => {...}
}

rust-ts equivalent:

let option = Some(42);
option.some(x => {...});
// Also possible with Result values
let result = Ok(42)
result.ok(x => {...})

let res = Ok(10);
res.match({
    ok: x => {...},
    err: e => {...},
})

Methods with callbacks have async variants with the syntax {name}_async, allowing passing async callbacks or Promise values.

Example:

const add_one_async = async (x: number) => x + 1;
const result = await Some(1).map_async(add_one_async); // result = Some(2)

Modules

Result

Result<T, E> is the type used for returning and propagating errors. It is an union type with the variants, Ok<T, E>, representing success and containing a value, and Err<E>, representing error and containing an error value.

type Result<T, E> = Ok<T, E> | Err<T, E>;
Usage
import {Ok, Err, Result} from "rust-ts";

const divide = (x: number, y: number): Result<number, string> =>
    y === 0 ? Err("Can't divide by zero") : Ok(x / y);

divide(10, 5)
    .and(z => divide(z, 2))
    .map(z => [z, z + 1])
    .match({
        ok: ([v, x]) => console.log(v + x),
        err: e => console.log(e),
    });

Option

Option<T> represents an optional value: every Option is either Some and contains a value, or None, and does not.

type Option<T> = Some<T> | None<T>;
Usage
import {Some, None, Option, match} from "rust-ts";

const divide = (x: number, y: number): Option<number> => (y === 0 ? None() : Some(x / y));

const result = divide(2.0, 3.0);

match(result, {
    some: x => console.log(x),
    none: () => console.log("Cannot divide by zero"),
});

match

match and match_async are available as instance methods for Result and Option.

Usage
import {Some, None, Option, Err, Ok, Result} from "rust-ts";

const add = (x: number, y: number): Option<number> => (y === 0 ? None() : Some(x + y));

const divide = (x: number, y: number): Result<number, string> =>
    y === 0 ? Err("Cannot divide by zero") : Ok(x + y);

const option = add(3, 4);
option.match({
    some: x => console.log(x),
    none: () => console.log("none"),
});

const result = option.ok_or("error");
result.map(x => x + 1).and(x => divide(x, 2));
result.match({
    ok: x => console.log(x),
    err: e => console.log(e),
});

fetch

fetchr is a wrapper around fetch that returns a Promise<Result<T, E>> with the data or error values instead of a Promise<Response>.

It also resolves the json, text, or blob accordingly based on the content-type.

If you need more granular control, use fetchx instead, which returns a Promise<Result<Response, E>>.

Usage
const url = "https://yourapiurl.com";
const res = await fetchr<ExpectedType, CustomErrorType>(url); // Optional generics for expected types, defaults to <unknown, Error>

// Fallback data with `unwrap_or`
const data = res.unwrap_or(FALLBACK_DATA);

// Match to handle each case
res.match({
    ok: data => /* do something with data */,
    err: err => /* handle errors */,
});

Contributions

Are welcome!

Refer to the docs for more details and examples.

6.0.2

3 months ago

6.0.1

4 months ago

5.1.0

6 months ago

5.0.0

6 months ago

6.0.0

6 months ago

4.1.5

7 months ago

4.2.1

7 months ago

4.2.0

7 months ago

4.1.4

7 months ago

4.1.3

7 months ago

4.1.2

7 months ago

4.1.1

8 months ago

3.0.2

8 months ago

3.0.1

9 months ago

3.0.0

10 months ago

2.3.0

12 months ago

2.3.2

12 months ago

2.3.1

12 months ago

4.1.0

8 months ago

4.0.0

8 months ago

2.3.3

10 months ago

2.2.0

1 year ago

2.1.0

1 year ago

2.0.0

1 year ago

1.1.0

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago