Listening to Tauri Events in the Frontend This skill covers how to subscribe to events emitted from Rust in a Tauri v2 application using the module. Core Concepts Tauri provides two event scopes: 1. Global events - Broadcast to all listeners across all webviews 2. Webview-specific events - Targeted to specific webview windows Important: Webview-specific events are NOT received by global listeners. Use the appropriate listener type based on how events are emitted from Rust. Installation The event API is part of the core Tauri API package: Global Event Listening Basic Listen Pattern Typed Event…