Docs

plugin-updater

Auto-update your app.

What is plugin-updater

Check a release endpoint for new signed versions and install them.

Install

js
bash
npm install @tauri-apps/plugin-updater

Usage

ts
ts
import { check } from '@tauri-apps/plugin-updater';
const update = await check();
if (update) { await update.downloadAndInstall(); }

Docs

Official documentation: plugin-updater.