QORMQORM v0.8.4 docs Get started

QORM Desktop Platform

Desktop is one of QORM's first-priority runtime platforms, well suited to development previews, production desktop apps, utility apps, and high-performance UI experiments.

Package it

qorm package examples/menus -p mac         # a macOS .app (per-platform cgo build)
qorm package app -p mac --release [--notarize]   # Developer ID + hardened runtime + DMG
./scripts/build-desktop.sh                 # native-window binary for this OS (-tags desktop)
qorm-desktop-... run examples/menus --app  # opens a native window

On Linux the tray, notification click-through and secure storage speak DBus directly (StatusNotifierItem / org.freedesktop.Notifications / Secret Service — GNOME needs the AppIndicator extension for the tray; keys land in GNOME Keyring or KWallet).

Examples that exercise desktop features: menus (system menu bar / tray / right-click menus, with icons + submenus), floating (chromeless + transparent, custom-shape window), desktop-hardware. See the support matrix for what's tested per OS.

The QORM dashboard used as a stand-in for the desktop build The dashboard example as rendered in a browser, shown as a stand-in. The same UI is hosted in a real native window by the -tags desktop binary; no native-window screenshot is captured in this build environment.

Architecture

qorm app (JSON) / qorm.bundle.json
  ↓
Go Runtime (loader + state + action + i18n, pure Go)
  ↓
Desktop Host Adapter (cmd/qorm window_desktop.go desktopHardware*)
  ↓
Rendered to HTML/CSS
  ↓
Native WebView (-tags desktop: WKWebView / WebView2 / WebKitGTK)

Features

Host Capability

The Desktop Pack should support first:

network.request
storage.read/write
clipboard.read/write
filesystem.openFile
filesystem.saveFile
notification.show
window.resize
window.fullscreen
navigation.go

Dangerous capabilities must require authorization:

filesystem.write
shell
process.spawn
system.automation

Desktop dangerous-capability boundaries

Rendering

Today desktop has a single render path: internal/render produces HTML/CSS, which the native WebView displays. A GPU-first renderer (display list, render graph, text cache, texture atlas) is roadmap work — see planning/.

Development tools

Desktop provides:

qorm run
qorm build
qorm preview
qorm measure
qorm check

See the CLI reference. A desktop inspect / validate / profile toolchain is roadmap work — see planning/.