Tauri WebApp on Demand v2.0.2
Turn any website into a native desktop app with a single config file.
What's new in v2.0.2
- Window state persistence — The app now remembers your window position, size, and maximized state between sessions. No configuration needed — it just works.
- Start minimized — New
start_minimized config option ("on" / "off") to launch the app minimized to the taskbar.
Downloads
| Platform |
File |
| Windows x64 |
Tauri2_Any_WebApp_Wrapper-v2.0.2-windows-x64.zip |
| Linux x64 |
Tauri2_Any_WebApp_Wrapper-v2.0.2-linux-x64.zip |
| macOS ARM64 |
Tauri2_Any_WebApp_Wrapper-v2.0.2-macos-arm64.zip |
Quick start
- Download the ZIP file for your platform
- Unpack to a folder of your choice
- Rename both files (
app.exe and app.json) to whatever name you'd like to use (e.g. MyWebApp.exe and MyWebApp.json)
- Edit the JSON file to configure to your needs — at minimum, set the
url field to the website you want to load
- Optionally, add a 256x256 pixel PNG icon file, name it the same as your executable (e.g.
MyWebApp.png), and set the icon field in the JSON to its filename — the app will show your custom icon on the taskbar
All configuration options
| Option |
Values |
Description |
url |
Any URL |
(Required) The website to load |
title |
Any text or "" |
Fixed window title. Leave empty to sync with page title |
icon |
File path or "" |
Custom window icon (.ico/.png), relative or absolute |
prefer_dark_mode |
"default", "dark", "light" |
Color scheme preference sent to websites (Windows only) |
force_dark_mode |
"on", "off" |
Force-dark rendering for all sites (Windows only) |
start_minimized |
"on", "off" |
Start the app minimized to the taskbar |