The path or URL to open.
This value is matched against the string regex defined on tauri.conf.json > plugins > shell > open,
which defaults to ^((mailto:\w+)|(tel:\w+)|(https?://\w+)).+.
Optional openWith: stringThe app to open the file or URL with. Defaults to the system default application for the specified path type.
import { open } from '@tauri-apps/plugin-shell';
// opens the given URL on the default browser:
await open('https://github.com/tauri-apps/tauri');
// opens the given URL using `firefox`:
await open('https://github.com/tauri-apps/tauri', 'firefox');
// opens a file using the default program:
await open('/path/to/file');
2.0.0
Opens a path or URL with the system's default app, or the one specified with
openWith.The
openWithvalue must be one offirefox,google chrome,chromiumsafari,open,start,xdg-open,gio,gnome-open,kde-openorwslview.