Table of contents
Being new to Rust, I'm starting with various simple examples to understand some of the dynamics. Tauri has been gaining popularity as a goto cross-platform desktop application approach over Electron with a Rust back-end. This article includes some basic examples.
Example 1 - Basic Hello World
cargo install create-tauri-app --locked
cargo create-tauri-app
# I chose Typescript for frontend, npm for package manager and Angular for the UI
cd hellorusttauri
npm install
npm run tauri dev
Following some of the examples from https://tauri.app/v1/guides/features/menu/, I added a basic menu.
... at this point, I'm a little stuck since Angular doesn't seem to have many examples at this time. I'll switch over to React to try to connect the dots.