python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Is there a way to open a desktop app as a "subview" inside a Tauri app?
I am building my first app with Tauri framework. Basically, I would like to open as embedded "subviews" (as for "IFrame", just to be clear), inside the main page, two desktop apps,...

Davide Franchi
Votes: 0
Answers: 0
Tauri window.__TAURI__.fs.readDir(... is unable to read directory - Error: path not allowed on the configured scope
I'm new to Tauri and I'm trying to read / ls a directory.
window.__TAURI__.fs.readDir("com.tauri.dev/", { dir: window.__TAURI__.fs.Dir.Data }).then(...
Unhandled Promise Rejection: path not...
01AutoMonkey
Votes: 0
Answers: 2
Rust mismatched types expected (), found struct `Enumerate
I am trying to return data from coremidi which is a list of midi device names. I am not sure what format its in. If that can't be done I am trying to return each name in the for loop.
I keep getting a...
Jerry seigle
Votes: 0
Answers: 1
Tauri Rust Invoke and return to frontend issues
I have invoked a function from my frontend to my backend. It works however I want to return results back to frontend and all I get is null
#[tauri::command]
fn get_midi_device_list() {
// "He...
Jerry seigle
Votes: 0
Answers: 2