Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
TauRPC
This package is a Tauri extension to give you a fully-typed IPC layer for Tauri commands and events.
The TS types corresponding to your pre-defined Rust backend API are generated on runtime, after which they can be used to call the backend from your TypeScript frontend framework of choice. This crate provides typesafe bidirectional IPC communication between the Rust backend and TypeScript frontend. Specta is used under the hood for the type-generation. The trait-based API structure was inspired by tarpc.
Usage🔧
First, add the following crates to your Cargo.toml:
# src-tauri/Cargo.toml
[]
= "0.6.0"
= { = "=2.0.0-rc.22", = ["derive"] }
# specta-typescript = "0.0.9"
= { = "1", = ["full"] }
Then, declare and implement your IPC methods and resolvers. If you want to use your API for Tauri's events, you don't have to implement the resolvers, go to Calling the frontend
// src-tauri/src/main.rs
;
async
The #[taurpc::procedures] trait will generate everything necessary for handling calls and the type-generation. Now, you should run pnpm tauri dev to generate and export the TS types.
The types will by default be exported to bindings.ts in the root of your project, but you can specify an export path by doing this #[taurpc::procedures(export_to = "../src/types.ts")].
Then on the frontend install the taurpc package.
Now on the frontend you import the generated types, if you specified the export_to attribute on your procedures you should import your from there.
With these types a typesafe proxy is generated that you can use to invoke commands and listen for events.
import { createTauRPCProxy } from '../bindings.ts'
const taurpc = createTauRPCProxy()
await taurpc.hello_world()
The types for taurpc are generated once you start your application, run pnpm tauri dev. If the types are not picked up by the LSP, you may have to restart typescript to reload the types.
You can find a complete example (using Svelte) here.
Using structs
If you want to use structs for the inputs/outputs of procedures, you should always add #[taurpc::ipc_type] to make sure the coresponding ts types are generated. This make will derive serde Serialize and Deserialize, Clone and specta::Type.
// #[derive(serde::Serialize, serde::Deserialize, specta::Type, Clone)]
Accessing managed state
To share some state between procedures, you can add fields on the API implementation struct. If the state requires to be mutable, you need to use a container that enables interior mutability, like a Mutex.
You can use the window, app_handle and webview_window arguments just like with Tauri's commands. Tauri docs
// src-tauri/src/main.rs
use Arc;
use Mutex;
use ;
type MyState = ;
;
async
Custom error handling
You can return a Result<T, E> to return an error if the procedure fails. This is will reject the promise on the frontend and throw an error.
If you're working with error types from Rust's std library, they will probably not implement serde::Serialize which is required for anything that is returned in the procedure.
In simple scenarios you can use map_err to convert these errors to Strings. For more complex scenarios, you can create your own error type that implements serde::Serialize.
You can find an example using thiserror here.
You can also find more information about this in the Tauri guides.
Extra options for procedures
Inside your procedures trait you can add attributes to the defined methods. This can be used to ignore or rename a method. Renaming will change the name of the procedure on the frontend.
Routing
It is possible to define all your commands and events inside a single procedures trait, but this can quickly get cluttered. By using the Router struct you can create nested commands and events,
that you can call using a proxy TypeScript client.
The path of the procedures trait is set by using the path attribute on #[taurpc::procedures(path = "")], then you can create an empty router and use the merge method to add handlers to the router.
You can only have 1 trait without a path specified, this will be the root. Finally instead of using taurpc::create_ipc_handler(), you should just call into_handler() on the router.
// Root procedures
;
// Nested procedures, you can also do this (path = "api.events.users")
;
async
Now on the frontend you can use the proxy client.
// Call `hello_world` on the root layer
await taurpc.hello_world()
// Listen for `event` on the `events` layer
const unlisten = await taurpc.events.event.on(() => {
console.log('Hello World!')
})
Typescript export configuration
You can specify a Specta typescript export configuration on the Router. These options will overwrite Specta's defaults. Make sure to install the latest version of specta_typescript.
All available options can be found in specta_typescript's docs.
let router = new
.export_config
.merge
.merge;
Calling the frontend
Trigger events on your TypeScript frontend from your Rust backend with a fully-typed experience.
The #[taurpc::procedures] macro also generates a struct that you can use to trigger the events, this means you can define the event types the same way you define the procedures.
First start by declaring the API structure, by default the event trigger struct will be identified by TauRpc{trait_ident}EventTrigger. If you want to change this, you can add an attribute to do this, #[taurpc::procedures(event_trigger = ApiEventTrigger)].
For more details you can look at the example.
You should add the #[taurpc(event)] attribute to your events. If you do this, you will not have to implement the corresponding resolver.
// src-tauri/src/main.rs
;
async
Then, on the frontend you can listen for the events with types:
const unlisten = await taurpc.hello_world.on(() => {
console.log('Hello World!')
})
// Run this inside a cleanup function, for example within useEffect in React and onDestroy in Svelte
unlisten()
Sending an event to a specific window
By default, events are emitted to all windows. If you want to send an event to a specific window by label, you can do the following:
use Windows;
trigger.send_to.hello_world?;
// Options:
// - Windows::All (default)
// - Windows::One(String)
// - Windows::N(Vec<String>)
Using channels
TauRPC will also generate types if you are using Tauri Channels. On the frontend you will be able to pass a typed callback function to your command.
;
Calling the command:
let taurpc = createTauRPCProxy()
await taurpc.update((update) => {
console.log(update.progress)
})
Features
- Basic inputs
- Struct inputs
- Sharing state
- Use Tauri's managed state?
- Renaming methods
- Nested routes
- Merging routers
- Custom error handling
- Typed outputs
- Async methods - async traits👀
- Allow sync methods
- Calling the frontend
- Renaming event trigger struct
- Send event to specific window
- React/Svelte handlers