bincode-typescript

Generates TypeScript serialisation and deserialisation code from Rust structs and enums

Goals

Status

I'm pretty new to Rust and I've just hacked around until the tests pass 🤷‍♂️

There is much room for improvement and PRs are welcome!

Check the source for currently supported Rust types and their TypeScript equivalents.

You may also like to look at the Rust types used in the tests and the TypeScript generated from these.

Current Issues & Limitations

Example via build.rs

There is currently a single bool option to enable support for node.js Buffer, so if you are running in the browser you probably don't want this enabled.

rust bincode_typescript::from_file("./src/types.rs", "./ts/types.ts", false);

Example via CLI

There is currently a single option (--buffer-support) to enable support for node.js Buffer.

shell ./bincode-typescript --support-buffer ./src/types.rs > ./ts/types.ts

Tests

Before running the tests, ensure that you have all the node.js dependencies installed by running yarn or npm i.

The tests check serialisation and deserialisation from generated TypeScript by round-tripping encoded data via stdio and asserting the expected values.

Prior Art

This builds on (ie. much TypeScript stolen from) the following projects.

The stated pros and cons are just personal opinion!

ts-rust-bridge

Pros:

Cons:

serde-reflection/serde-generate

Pros:

Cons: