Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tauri-apps/tauri-bindgen

Typesafe language bindings generator for the Tauri IPC bridge
https://github.com/tauri-apps/tauri-bindgen

bindings javascipt javascript rollup-plugin rust tauri typescript wasm webassembly

Last synced: about 1 month ago
JSON representation

Typesafe language bindings generator for the Tauri IPC bridge

Awesome Lists containing this project

README

        



tauri-bindgen



Typesafe language bindings generator for the Tauri IPC bridge



Online playground

[![MIT or Apache 2.0 licensed][mit-or-apache-badge]][mit-or-apache-url]


[mit-or-apache-badge]: https://img.shields.io/badge/license-MIT%20or%20Apache%202.0-blue.svg
[mit-or-apache-url]: LICENSE

> **Note**: **This project is still under heavy development and may not support all features yet. Feel free to try it out though, create issues, and open PRs!**

## About

Generate type-safe bindings for Tauri's IPC bridge. Currently supports Rust [Host](#host) **and** Webview frontends (called [Guests](#guest)) in JavaScript, TypeScript, and Rust. Bindings are declared using [`*.wit`](docs/WIT.md) files that describe exposed functions and shared types.

### Rationale

Under the current IPC system, Tauri can make no compile-time guarantees on the correctness of your `invoke` calls and any mistakes will result in nasty runtime errors. For example you might have misspelled a command or parameter name which you will only notice when actually running the app!

`tauri-bindgen` will generate traits and invoke-handlers for the [Host](#host) and [Guest](#guest) bindings for JavaScript, TypeScript, Rust and ReScript from a single, shared source of truth using the [`*.wit`](https://github.com/WebAssembly/component-model/blob/main/design/mvp/WIT.md) format as a Interface Definition Language (IDL). The generated bindings automatically take care of the heavy lifting, such as correctly calling the `invoke` function and serializing/deserializing parameters and results.

Here are a few reasons why that is cool:

- **Compile-time Checks**

When using strongly typed languages, such as Rust, TypeScript or ReScript the generated code will automatically ensure that you are calling the API correctly, as long as it passes the type checking your golden. This is especially neat **when working in a team**, so your colleagues can't just change command signatures and pull the rug out from under you.

- **Easily auditable**

Sometimes in bigger apps it's easy to loose track of all the commands your backend exposes, there might be an old version left somewhere that still get's exposed to the frontend. This is of course a big security risk. Having all possible commands be declared in a single place makes them easily auditable for you and possibly external security auditing professionals.

- **Automatic documentation**

`tauri-bindgen` can also generate easy to read markdown and html descriptions of your interfaces for documentation purposes.

- **Future proof**

We're planning a big rework of the IPC bridge in the coming months and `tauri-bindgen` has been designed with some of the early design-work in mind. A big rework of course means breaking changes, but using tauri bindgen isolates from these changes, just update Tauri, update `tauri-bindgen`, and re-generate your bindings and your code will continue to work!

## Terminology

### **`Host`**

Host refers to the Tauri rust core, so the place where your commands are implemented.

### **`Guest`**

Guest refers to the code running in the Webview, this will usually be written in JavaScript/TypeScript, but can also be written in any other language that runs on the Web (through WASM) like Rust, C, or Swift.

## Supported Bindings

- **Host** - Generates a trait declaration and an `invoke_handler` from the interface. This generator can also be used through the `tauri-bindgen-host` crate (located at `crates/host`) and, has a generate! macro for generating code.
- **Guest JavaScript** - Generates a module exposing all functions, functions internally know how to serialize and invoke their host counterpart.
- **Guest Typescript** - The same as the JavaScript guest, but generates Typescript files.
- **Guest Rust** - Generates bindings using `wasm_bindgen` that can be used in Rust compile-to-wasm frontend frameworks such as sycamore. You probably want to depend on the `tauri-bindgen-guest-rust` crate (located at `crates/guest-rust`) and use the `generate!` macro to generate code.
- **Guest ReScript** - Generates bindings for the ReScript language.
- **Markdown** - Generates a markdown description of the interface for documentation purposes.

## Example

Declare your interface in a `*.wit` file:

```wit
interface greet {
func greet(name: string) -> string
}
```

then you can generate the host bindings:

```rust
use tauri_bindgen_host::ipc_router_wip::{BuilderExt, Caller, Router};

tauri_bindgen_host::generate!({
path: "../greet.wit",
async: false,
tracing: true
});

#[derive(Clone, Copy)]
struct GreetCtx;

impl greet::Greet for GreetCtx {
fn greet(&self, name: String) -> String {
format!(
"Hello, {}! You've been greeted from code-generated Rust!",
name
)
}
}

fn main() {
let mut router: Router = Router::new(GreetCtx {});

greet::add_to_router(&mut router, |ctx| ctx).unwrap();

tauri::Builder::default()
.ipc_router(router)
.run(tauri::generate_context!())
.expect("error while running tauri application");
}
```

and lastly generate client bindings, this can be done for JavaScript, Typescript or ReScript using the following commands:

```
tauri-bindgen guest javascript greet.wit --prettier // we can run prettier on the generated code. requires a global prettier install
tauri-bindgen guest typescript greet.wit --prettier
tauri-bindgen guest rescript greet.wit --fmt // run `rescript format` on the generated code. requires a global rescript install
```

or for rust using the provided `generate!` macro:

```rust
tauri_bindgen_guest_rust::generate!({
path: "greet.wit"
});

// now we can call greet
let greeting = greet::greet("Jonas").await;
```

see also [the example](./examples/).

## Contributing

PRs are welcome!

## Credits

This project has been inspired by and based off of the awesome [`wit-bindgen`](https://github.com/bytecodealliance/wit-bindgen) tool for WebAssembly by the [Bytecode Alliance](https://bytecodealliance.org).

#### License


Licensed under either of Apache License, Version
2.0
or MIT license at your option.



Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in this crate by you, as defined in the Apache-2.0 license, shall
be dual licensed as above, without any additional terms or conditions.