tauri
Installation
SKILL.md
Tauri Patterns
Reference Repositories
- Tauri: Desktop app framework with Rust backend and web frontend
When to Apply This Skill
Use this pattern when you need to:
- Add or change Tauri commands, permissions, capabilities, or security config.
- Build file paths in Tauri frontend code running in the webview.
- Choose correctly between
@tauri-apps/api/pathand Node/BunpathAPIs. - Replace manual slash concatenation with
join(),dirname(), and related helpers. - Handle cross-platform filesystem behavior for desktop apps.
- Combine Tauri path APIs with
@tauri-apps/plugin-fsoperations.