[DEPRECATED] Please use the upload plugin from https://github.com/tauri-apps/plugins-workspace/tree/dev/plugins/upload (it has a download
function too now)
This plugin provides an interface for file downloads.
This repo shape might appear to be strange, but it is really just a hybrid Rust / Typescript project that recommends a specific type of consumption, namely using GIT as the secure distribution mechanism, and referencing specific unforgeable git hashes. Of course, it can also be consumed via Cargo and NPM.
Rust source code that contains the plugin definition.
Typescript source for the /webview-dist folder that provides an API to interface with the rust code.
Tree-shakeable transpiled JS to be consumed in a Tauri application.
You need to install both the Rust and the JavaScript packages!
There are three general methods of installation that we can recommend.
- Pull sources directly from Github using git tags / revision hashes (most secure, good for developement, shown below)
- Git submodule install this repo in your tauri project and then use
file
protocol to ingest the source - Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked)
For more details and usage see the example app. Please note, below in the dependencies you can also lock to a revision/tag in both the Cargo.toml
and package.json
src-tauri/Cargo.toml
[dependencies.tauri-plugin-download]
git = "https://github.com/FabianLars/tauri-plugin-download"
# tag = "v0.1.0" Not yet available
Register the plugin in src-tauri/src/main.rs
:
use tauri_plugin_download::Download;
fn main() {
tauri::Builder::default()
.plugin(Download::init())
.build()
.run();
}
Install from a tagged release
(Not yet available)
npm install github:FabianLars/tauri-plugin-download#v0.1.0
# or
yarn add github:FabianLars/tauri-plugin-download#v0.1.0
Install from a commit
npm install github:FabianLars/tauri-plugin-download#1234567890abcdefghijklmnopqrstuvwxyz
# or
yarn add github:FabianLars/tauri-plugin-download#1234567890abcdefghijklmnopqrstuvwxyz
Install from a branch
npm install github:FabianLars/tauri-plugin-download#main
# or
yarn add github:FabianLars/tauri-plugin-download#main
Use within your JS/TS:
import download from 'tauri-plugin-download-api'
await download('https://relevant.url/file', '/path/to/file')
MIT / Apache-2.0