api-client/packages/hoppscotch-desktop/plugin-workspace/tauri-plugin-appload
Shreyas eb8487fc82
fix(desktop): rebase with appload mirror and hash (#5351)
The rebases and updates desktop's `@hoppscotch/plugin-appload`
 dependency from branch-based ref to specific commit hash to resolve
 Docker build failures.

 Branch-based GitHub dependencies require `git` in the build environment.
 Our Dockerfile stages didn't install `git`, which caused `pnpm install`
 to fail with `spawn git ENOENT`. Using a commit hash allows `pnpm` to
 fetch the tarball directly without requiring `git`.
2025-08-27 09:52:49 +05:30
..
dist-js feat(desktop): portable phase-2 app loader infra (#5341) 2025-08-26 20:48:31 +05:30
examples/tauri-app feat(desktop): portable phase-2 app loader infra (#5341) 2025-08-26 20:48:31 +05:30
guest-js feat(desktop): portable phase-2 app loader infra (#5341) 2025-08-26 20:48:31 +05:30
permissions fix(desktop): rebase with appload mirror and hash (#5351) 2025-08-27 09:52:49 +05:30
src fix(desktop): rebase with appload mirror and hash (#5351) 2025-08-27 09:52:49 +05:30
.envrc feat: platform independent core and the new desktop app (#4684) 2025-02-28 00:01:25 +05:30
.gitignore feat: platform independent core and the new desktop app (#4684) 2025-02-28 00:01:25 +05:30
build.rs feat(desktop): portable phase-2 app loader infra (#5341) 2025-08-26 20:48:31 +05:30
Cargo.lock feat(desktop): portable phase-2 app loader infra (#5341) 2025-08-26 20:48:31 +05:30
Cargo.toml feat(desktop): portable phase-2 app loader infra (#5341) 2025-08-26 20:48:31 +05:30
devenv.lock feat: platform independent core and the new desktop app (#4684) 2025-02-28 00:01:25 +05:30
devenv.nix feat: platform independent core and the new desktop app (#4684) 2025-02-28 00:01:25 +05:30
devenv.yaml feat: platform independent core and the new desktop app (#4684) 2025-02-28 00:01:25 +05:30
LICENSE.md fix(desktop): disk space detection on overlay fs (#5226) 2025-07-11 13:32:15 +05:30
package.json fix(desktop): rebase with appload mirror and hash (#5351) 2025-08-27 09:52:49 +05:30
pnpm-lock.yaml feat(desktop): portable phase-2 app loader infra (#5341) 2025-08-26 20:48:31 +05:30
README.md fix(desktop): disk space detection on overlay fs (#5226) 2025-07-11 13:32:15 +05:30
rollup.config.js feat: platform independent core and the new desktop app (#4684) 2025-02-28 00:01:25 +05:30
tsconfig.json feat: platform independent core and the new desktop app (#4684) 2025-02-28 00:01:25 +05:30

Tauri Plugin: AppLoad

A Tauri plugin for downloading and loading web app bundles into WebView.

GitHub License MIT Tauri 2.0 Rust

Features

  • 🦀 Blazingly fast!
  • Download and load web app bundles from remote servers
  • Secure verification using ed25519 + blake3
  • Caching with hot/cold storage strategy
  • Custom URI scheme for isolated app loading

Installation

Important

This plugin requires Tauri 2.0 or later.

Add the plugin to your project by installing directly from GitHub:

[dependencies]
tauri-plugin-appload = { git = "https://github.com/CuriousCorrelation/tauri-plugin-appload" }
"dependencies": {
  "@CuriousCorrelation/plugin-appload": "github:CuriousCorrelation/tauri-plugin-appload"
}

Quick Start

Rust

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

JavaScript/TypeScript

import { download, load } from '@CuriousCorrelation/plugin-appload'

// Download a bundle
const { bundleName } = await download({
  serverUrl: "https://example.com"
})

// Load the bundle in a new window
await load({
  bundleName,
  window: {
    title: "My App",
    width: 800,
    height: 600
  }
})

Configuration

Note

The plugin uses sensible defaults but can be customized via configuration.

Option Description Default
api.serverUrl Bundle server URL http://localhost:3200
cache.maxSize Maximum cache size 100MB
cache.filesTtl File time-to-live 1 hour
storage.maxBundleSize Maximum bundle size 50MB

Permissions

The plugin defines the following permissions:

  • allow-download: Enable bundle downloads
  • allow-load: Enable bundle loading
  • deny-download: Disable bundle downloads
  • deny-load: Disable bundle loading

Development

Requirements:

  • Rust 1.77.2 or later
  • Node.js 18 or later
  • pnpm

License

Code: (c) 2025 - CuriousCorrelation

MIT or MIT/Apache 2.0 where applicable.