tauri-remote-ui 1.0.1

A Tauri plugin that exposes the application’s UI to a web browser, allowing full interaction while the native app continues running. This enables frontend debug, end-to-end UI testing using existing web-based testing tools without requiring modifications to the app itself.
1
2
3
4
5
6
7
8
9
10
11
// AGPL-3.0-only License
// Copyright (c) 2025 DraviaVemal
// See LICENSE file in the root directory.

pub mod emmiter_ext;
pub mod plugin_ext;
pub mod rpc_server;

pub use emmiter_ext::*;
pub use plugin_ext::*;
pub use rpc_server::*;