#tauri-app #tauri-plugin #analytics #web-apps #mobile #open #aptabase

tauri-plugin-aptabase

Tauri Plugin for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps

15 releases (4 breaking)

0.5.1 Feb 4, 2024
0.5.0 Dec 12, 2023
0.4.2 Nov 3, 2023
0.3.2 Jul 23, 2023
0.1.3 Mar 29, 2023

#374 in GUI

Download history 52/week @ 2023-12-25 211/week @ 2024-01-01 83/week @ 2024-01-15 121/week @ 2024-01-22 16/week @ 2024-01-29 6/week @ 2024-02-05 114/week @ 2024-02-12 77/week @ 2024-02-19 320/week @ 2024-02-26 54/week @ 2024-03-04 1105/week @ 2024-03-11 61/week @ 2024-03-18 7/week @ 2024-03-25 72/week @ 2024-04-01 221/week @ 2024-04-08

371 downloads per month

MIT license

21KB
417 lines

Aptabase

Tauri Plugin for Aptabase

This plugin allows you to instrument your app with events that can be analyzed in Aptabase, an Open Source, Privacy-First, and Simple Analytics for Mobile, Desktop, and Web Apps.

Install

Install the Core plugin by adding the following to your Cargo.toml file:

src-tauri/Cargo.toml

[dependencies]
tauri-plugin-aptabase = "0.4"

You can install the JavaScript Guest bindings using your preferred JavaScript package manager

npm add @aptabase/tauri

This plugin is only compatible with Tauri v1. To use it on a Tauri v2 app, follow the instructions on our v2 branch.

Usage

First, you need to get your App Key from Aptabase, you can find it in the Instructions menu on the left side menu.

Then you need to register the core plugin with Tauri:

src-tauri/src/main.rs

fn main() {
    tauri::Builder::default()
        .plugin(tauri_plugin_aptabase::Builder::new("<YOUR_APP_KEY>").build()) // 👈 this is where you enter your App Key
        .run(tauri::generate_context!())
        .expect("error while running tauri application");
}

You can then start sending events from Rust by importing the tauri_plugin_aptabase::EventTracker trait and calling the track_event method on App, AppHandle or Window.

As an example, you can add app_started and app_exited events like this:

use tauri_plugin_aptabase::EventTracker;

fn main() {
    tauri::Builder::default()
        .plugin(tauri_plugin_aptabase::init("<YOUR_APP_KEY>".into()))
        .setup(|app| {
            app.track_event("app_started", None);
            Ok(())
        })
        .build(tauri::generate_context!())
        .expect("error while running tauri application")
        .run(|handler, event| match event {
            tauri::RunEvent::Exit { .. } => {
                handler.track_event("app_exited", None);
                handler.flush_events_blocking();
            }
            _ => {}
        })
}

The trackEvent function is also available through the JavaScript guest bindings:

import { trackEvent } from "@aptabase/tauri";

trackEvent("save_settings") // An event with no properties
trackEvent("screen_view", { name: "Settings" }) // An event with a custom property

A few important notes:

  1. The plugin will automatically enhance the event with some useful information, like the OS, the app version, and other things.
  2. You're in control of what gets sent to Aptabase. This plugin does not automatically track any events, you need to call trackEvent manually.
    • Because of this, it's generally recommended to at least track an event at startup
  3. You do not need to await for the trackEvent function, it'll run in the background.
  4. Only strings and numbers values are allowed on custom properties

Dependencies

~22–67MB
~1M SLoC