#tauri #tauri-plugin #instance #single #ensure #running #manager

tauri-plugin-single-instance

Ensure a single instance of your tauri app is running

14 releases

2.0.0-beta.6 Apr 18, 2024
2.0.0-beta.4 Mar 21, 2024
2.0.0-alpha.6 Dec 20, 2023
2.0.0-alpha.4 Oct 29, 2023
2.0.0-alpha.0 May 24, 2023

#3 in #ensure

Download history 17/week @ 2024-01-05 18/week @ 2024-01-12 11/week @ 2024-01-19 137/week @ 2024-01-26 462/week @ 2024-02-02 99/week @ 2024-02-09 417/week @ 2024-02-16 895/week @ 2024-02-23 457/week @ 2024-03-01 324/week @ 2024-03-08 381/week @ 2024-03-15 393/week @ 2024-03-22 511/week @ 2024-03-29 367/week @ 2024-04-05 413/week @ 2024-04-12 431/week @ 2024-04-19

1,825 downloads per month

Apache-2.0 OR MIT

61KB
443 lines

tauri-plugin-single-instance

Ensure a single instance of your tauri app is running.

Install

This plugin requires a Rust version of at least 1.75

There are three general methods of installation that we can recommend.

  1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked)
  2. Pull sources directly from Github using git tags / revision hashes (most secure)
  3. Git submodule install this repo in your tauri project and then use file protocol to ingest the source (most secure, but inconvenient to use)

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

src-tauri/Cargo.toml

[dependencies]
tauri-plugin-single-instance = "2.0.0-beta"
# alternatively with Git:
tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }

Usage

First you need to register the core plugin with Tauri:

src-tauri/src/main.rs

use tauri::{Manager};

#[derive(Clone, serde::Serialize)]
struct Payload {
  args: Vec<String>,
  cwd: String,
}

fn main() {
    tauri::Builder::default()
        .plugin(tauri_plugin_single_instance::init(|app, argv, cwd| {
            println!("{}, {argv:?}, {cwd}", app.package_info().name);

            app.emit_all("single-instance", Payload { args: argv, cwd }).unwrap();
        }))
        .run(tauri::generate_context!())
        .expect("error while running tauri application");
}

Contributing

PRs accepted. Please make sure to read the Contributing Guide before making a pull request.

Partners

CrabNebula

For the complete list of sponsors please visit our website and Open Collective.

License

Code: (c) 2015 - Present - The Tauri Programme within The Commons Conservancy.

MIT or MIT/Apache 2.0 where applicable.

Dependencies

~16–62MB
~1M SLoC