Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
L

lorca

> 编程语言
Open source

Build cross-platform modern desktop apps in Go + HTML5

8.2K stars0 likes0 views
WebsiteGitHub

About

Build cross-platform modern desktop apps in Go + HTML5

# Lorca ## Features * Pure Go library (no cgo) with a very simple API * Small application size (normally 5-10MB) * Best of both worlds - the whole power of HTML/CSS to make your UI look good, combined with Go performance and ease of development * Expose Go functions/methods and call them from JavaScript * Call arbitrary JavaScript code from Go * Asynchronous flow between UI and main app in both languages (async/await and Goroutines) * Supports loading web UI from the local web server or via data URL * Supports testing your app with the UI in the headless mode * Supports multiple app windows * Supports packaging and branding (e.g. custom app icons). Packaging for all three OS can be done on a single machine using GOOS and GOARCH variables. Also, limitations by design: * Requires Chrome/Chromium >= 70 to be installed. * No control over the Chrome window yet (e.g. you can't remove border, make it transparent, control position or size). * No window menu (tray menus and native OS dialogs are still possible via 3rd-party libraries) If you want to have more control of the browser window - consider using [webview](https://github.com/zserge/webview) library with a similar API, so migration would be smooth. ## Example ```go ui, _ := lorca.New("", "", 480, 320) defer ui.Close() // Bind Go function to be available in JS. Go function may be long-running and // blocking - in JS it's represented with a Promise. ui.Bind("add", func(a, b int) int { return a + b }) // Call JS function from Go. Functions may be asynchronous, i.e. return promises n := ui.Eval(`Math.random()`).Float() fmt.Println(n) // Call JS that calls Go and so on and so on... m := ui.Eval(`add(2, 3)`).Int() fmt.Println(m) // Wait for the browser window to be closed <-ui.Done() ```

Also, see [examples](examples) for more details about binding functions and packaging binaries. ## Hello World Here are the steps to run the hello world example. ``` cd examples/counter go get go run ./ ``` ## How it works Under the hood Lorca uses [Chrome DevTools Protocol](https://chromedevtools.github.io/devtools-protocol/) to instrument on a Chrome instance. First Lorca tries to locate your installed Chrome, starts a remote debugging instance binding to an ephemeral port and reads from `stderr` for the actual WebSocket endpoint. Then Lorca opens a new client connection to the WebSocket server, and instruments Chrome by sending JSON messages of Chrome DevTools Protocol methods via WebSocket. JavaScript functions are evaluated in Chrome, while Go functions actually run in Go runtime and returned values are sent to Chrome. ## What's in a name? > There is kind of a legend, that before his execution Garcia Lorca have seen a > sunrise over the heads of the soldiers and he said "And yet, the sun rises...". > Probably it was the beginning of a poem. (J. Brodsky) Lorca is an anagram of [Carlo](https://github.com/GoogleChromeLabs/carlo/), a project with a similar goal for Node.js. ## License Code is distributed under MIT license, feel free to use it in your proprietary projects as well.

GitHub Issues· 0 open

View all on GitHub

No open issues yet, or sync has not completed.

Highlights

  • •Pure Go library (no cgo) with a very simple API
  • •Small application size (normally 5-10MB)
  • •Best of both worlds - the whole power of HTML/CSS to make your UI look
  • •Expose Go functions/methods and call them from JavaScript
  • •Call arbitrary JavaScript code from Go
  • •Asynchronous flow between UI and main app in both languages (async/await and Goroutines)
  • •Supports loading web UI from the local web server or via data URL
  • •Supports testing your app with the UI in the headless mode
  • •Supports multiple app windows
  • •Supports packaging and branding (e.g. custom app icons). Packaging for all

> Tags

Go

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言