| Crates.io | tauri-plugin-sharekit |
| lib.rs | tauri-plugin-sharekit |
| version | 0.2.2 |
| created_at | 2025-08-28 13:35:40.919048+00 |
| updated_at | 2025-09-15 14:04:02.016839+00 |
| description | A Tauri v2 plugin that enables sharing content with native sharing interfaces on Android, iOS, macOS and Windows. |
| homepage | |
| repository | https://github.com/Choochmeque/tauri-plugin-sharekit |
| max_upload_size | |
| id | 1814121 |
| size | 222,876 |
Share content to other apps via native sharing interfaces on Android, iOS, macOS and Windows.
This plugin requires a Rust version of at least 1.65
There are three general methods of installation that we can recommend.
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
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'
});
PRs accepted. Please make sure to read the Contributing Guide before making a pull request.
MIT