11 releases

new 0.3.3 Jul 25, 2024
0.3.2 May 29, 2024
0.3.1 Feb 7, 2024
0.3.0 Dec 20, 2023
0.1.0 Sep 18, 2023

#85 in Profiling

Download history 59/week @ 2024-04-05 105/week @ 2024-04-12 89/week @ 2024-04-19 101/week @ 2024-04-26 41/week @ 2024-05-03 55/week @ 2024-05-10 84/week @ 2024-05-17 181/week @ 2024-05-24 119/week @ 2024-05-31 157/week @ 2024-06-07 320/week @ 2024-06-14 134/week @ 2024-06-21 156/week @ 2024-06-28 268/week @ 2024-07-05 117/week @ 2024-07-12 112/week @ 2024-07-19

669 downloads per month

MIT/Apache

73KB
1.5K SLoC

Devtools for Tauri

Inspect, monitor, and understand your Tauri application with ease.

  • Easy Integration: With just a few lines of code, enable detailed event logging and metadata extraction for your application.
  • Rich Insights: Get insight into what your app is doing, Performance, Errors, Warnings, everything is available at a glance.
  • And more: This project is actively worked on, and we are open to hear your ideas, check out the Upcoming Features issue for details.

Getting Started

Ensure you have Tauri set up correctly. Then install the Rust instrumentation from crates.io:

cargo add devtools

Then add the following snippet to your tauri initialization code:

fn main() {
    #[cfg(debug_assertions)] // only enable instrumentation in development builds
    let devtools = devtools::init();

    let mut builder = tauri::Builder::default();

    #[cfg(debug_assertions)]
    {
        builder = builder.plugin(devtools);
    }

    builder
        .run(tauri::generate_context!())
        .expect("error while running tauri application");
}

And then run your app as usual, if everything is set up correctly devtools will print the following message:

Screenshot 2023-11-28 at 14.05.20.png

You can click or copy & paste the link into your browser to open up the UI. Alternatively you can navigate to https://devtools.crabnebula.dev and connect from there.

Dependencies

~29–72MB
~1M SLoC