tauri-plugin-sharekit

Crates.iotauri-plugin-sharekit
lib.rstauri-plugin-sharekit
version0.2.2
created_at2025-08-28 13:35:40.919048+00
updated_at2025-09-15 14:04:02.016839+00
descriptionA Tauri v2 plugin that enables sharing content with native sharing interfaces on Android, iOS, macOS and Windows.
homepage
repositoryhttps://github.com/Choochmeque/tauri-plugin-sharekit
max_upload_size
id1814121
size222,876
Vladimir Pankratov (Choochmeque)

documentation

README

npm Crates.io License

Tauri Plugin ShareKit

Share content to other apps via native sharing interfaces on Android, iOS, macOS and Windows.

Install

This plugin requires a Rust version of at least 1.65

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-sharekit = "0.2"
# alternatively with Git:
tauri-plugin-sharekit = { git = "https://github.com/Choochmeque/tauri-plugin-sharekit" }

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

pnpm add @choochmeque/tauri-plugin-sharekit-api
# or
npm add @choochmeque/tauri-plugin-sharekit-api
# or
yarn add @choochmeque/tauri-plugin-sharekit-api

# alternatively with Git:
pnpm add https://github.com/Choochmeque/tauri-plugin-sharekit
# or
npm add https://github.com/Choochmeque/tauri-plugin-sharekit
# or
yarn add https://github.com/Choochmeque/tauri-plugin-sharekit

Usage

First you need to register the core plugin with Tauri:

src-tauri/src/main.rs

fn main() {
    tauri::Builder::default()
        .plugin(tauri_plugin_sharekit::init())
        .run(tauri::generate_context!())
        .expect("error while running tauri application");
}

Afterwards all the plugin's APIs are available through the JavaScript guest bindings:

import { shareText, shareFile } from "@choochmeque/tauri-plugin-sharekit-api";

// Share text
await shareText('Tauri is great!');

// Share a file
await shareFile('file:///path/to/document.pdf', {
  mimeType: 'application/pdf',
  title: 'My Document'
});

Contributing

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

License

MIT

Commit count: 64

cargo fmt