- Svelte
- React
- Vue
- Preact
- Lit
- Vanilla
/main.go- The main application
/frontend/- Frontend project files
/build/- Project build directory
/build/appicon.png- The application icon
/build/darwin/- Mac specific project files
/build/windows/- Windows specific project files
/wails.json- The project configuration
/go.mod- Go module file
/go.sum- Go module checksum file
Installation | Wails
Windows 10/11 AMD64/ARM64 MacOS 10.13+ AMD64 MacOS 11.0+ ARM64 Linux AMD64/ARM64 Wails has a number of common dependencies that are required before installation: Download Go from the Go Downloads Page. Ensure that you follow the official Go installation instructions. You will also need to ensure that your PATH environment variable also includes the path to your ~/go/bin directory.
https://wails.io/docs/gettingstarted/installation
How does it work? | Wails
A Wails application is a standard Go application, with a webkit frontend. The Go part of the application consists of the application code and a runtime library that provides a number of useful operations, like controlling the application window. The frontend is a webkit window that will display the frontend assets.
https://wails.io/docs/howdoesitwork

Seonglae Cho