Loading repository data…
Loading repository data…
dax-dot-gay / repository
A wrapper plugin for several persistence backends, focused on managing complex project folders with less boilerplate.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A wrapper plugin for several persistence backends, focused on managing complex project folders with less boilerplate.
# Install cargo dependency
cargo add tauri-plugin-persistence
# Install JS dependency
npm install tauri-plugin-persistence-api
The plugin must be initialized in Rust. A basic example follows:
pub fn run() {
tauri::Builder::default()
.plugin(tauri_plugin_persistence::init())
.run(tauri::generate_context!())
.expect("error while running tauri application");
}
The plugin's functions can be accessed in Rust from app.persistence(), or in the frontend (see the example).