- Notifications
You must be signed in to change notification settings - Fork35
Go Web UI Toolkit - Public Releases and Development
License
icza/gowut
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Gowut (Go Web UI Toolkit) is a full-featured, easy to use, platform independent Web UI Toolkit written in pure Go, no platform dependent native code is linked or called.
For documentation please visit theGowut Wiki.
Development takes place in thedev
branch.
To quickly install (or update to) thelatest version, type:
go get -u github.com/icza/gowut/...
To quickly test it and see it in action, run the following example applications.
Let's assume you're in the root of the Gowut project:
cd $GOPATH/src/github.com/icza/gowut
1. Showcase of Features.
This one auto-opens itself in your default browser.
go run _examples/showcase/showcase.go
The Showcase of Features is also available live:https://gowut-demo.herokuapp.com/show
2. A single window example.
This one auto-opens itself in your default browser.
go run _examples/simple/simple_demo.go
And this is how it looks:
3. Login window example with session management.
Change directory so that the demo can read the test cert and key files:
cd _examples/logingo run login_demo.go
Open the pagehttps://localhost:3434/guitest/
in your browser to see it.
You can read the godoc of Gowut online here:
About
Go Web UI Toolkit - Public Releases and Development