Guark allows you to build beautiful user interfaces using modern web technologies such as Vue.js, React.js..., while your app logic handled and powered by the amazing Go.
Guark is an open-source framework to build cross platform desktop GUI applications.
Go + Quark = Guark
Simplify cross platform desktop apps development.
Demo Video: https://youtu.be/_k_tq9sj-do
Guark backend and logic part handled by native Go code, while the user interfaces built with modern web technologies (Vue.js, React.js, etc...), and with Guark javascript API you can communicate between your Go and UI framework, and calling your exported Go functions and plugin(s) methods.
- Desktop applications with GO ♥
- One codebase for Gnu/Linux, macOS, and Windows.
- UI Hot Reload.
- You can use any front end framework.
- Supports Chrome, and native webview engine or both.
- Windows MSI bundler builtin.
go get -u github.com/guark/guark/cmd/guark
// fedora
sudo dnf install gtk3-devel webkit2gtk3-devel gcc-c++ pkgconf-pkg-config
// Ubuntu
sudo apt install libgtk-3-dev libwebkit2gtk-4.0-dev build-essential
// Windows
// https://jmeubank.github.io/tdm-gcc/download/
After installing guark CLI tool, the next step is to create a new guark project based on the template that you like:
# cd to empty directory and run:
guark init --template vue --mod github.com/username/appname
After creating new project run:
guark run
// lib/funcs/foo_bar.go
import (
"github.com/guark/guark/app"
)
func FooBar(c app.Context) (interface{}, error) {
c.App.Log.Debug("Foo bar called")
return "This is a my return value to javasript", nil
}
// Exposed functions to guark Javascript api.
var Funcs = app.Funcs{
"foo": funcs.FooBar,
}
import g from "guark"
g.call("foo")
.then(res => console.log(res))
.catch(err => console.error(err))
See Vue template as an example: https://github.com/guark/vue
You can change the engine in guark.yaml
file.
webview
: Uses native system webview.chrome
: Uses and requires google chrome.hybrid
: Uses chrome if exists in the system, if chrome not available guark will switch to native webview by default.
You can build your app with
guark build
After building your app you can bundle your windows app into msi using WIX.
guark bundle
Install it from: https://wixtoolset.org/
You can build windows app from your linux based system, using mingw64
// Fedora
sudo dnf install mingw64-gcc
// Ubuntu
sudo apt install binutils-mingw-w64
Double check the binary paths in guark-build.yaml
.
# this command will build and compile linux, and windows app. you can find your compiled apps in `dist/` directory.
guark build --target linux --target windows
You can use any cross compiler for example: guark build --target darwin
. just change the options in guark-build.yaml
file.
You can also bundle windows app into MSI file from your linux based system via guark bundle
, but you need to install wix tools:
# fedora
dnf install msitools
# Ubuntu
sudo apt-get install wixl
PRs, issues, and feedback from ninja gophers are very welcomed.
Guark is provided under the MIT License.