{"id":39839237,"url":"https://github.com/aclisp/godashboard","last_synced_at":"2026-01-18T13:25:31.761Z","repository":{"id":73095447,"uuid":"299479653","full_name":"aclisp/godashboard","owner":"aclisp","description":"A dashboard application built in Go and gRPC using WebAssembly","archived":false,"fork":false,"pushed_at":"2020-11-21T12:35:58.000Z","size":7639,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-12T01:07:30.632Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aclisp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-09-29T02:06:29.000Z","updated_at":"2024-06-15T01:25:43.000Z","dependencies_parsed_at":"2023-04-04T05:14:10.164Z","dependency_job_id":null,"html_url":"https://github.com/aclisp/godashboard","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aclisp/godashboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aclisp%2Fgodashboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aclisp%2Fgodashboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aclisp%2Fgodashboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aclisp%2Fgodashboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aclisp","download_url":"https://codeload.github.com/aclisp/godashboard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aclisp%2Fgodashboard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28536751,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T13:04:05.990Z","status":"ssl_error","status_checked_at":"2026-01-18T13:01:44.092Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-18T13:25:30.943Z","updated_at":"2026-01-18T13:25:31.752Z","avatar_url":"https://github.com/aclisp.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go dashboard\n\nA dashboard application built in Go and gRPC using WebAssembly.\n\nUsing frontend framework such as [Vecty](https://github.com/hexops/vecty) or [Ebiten](https://github.com/hajimehoshi/ebiten), these type of application can be built with great productivity:\n\n- Admin dashboard\n- Multi-player online game\n\n## Features\n\n* Pure Go in both frontend and backend. No need to learn another frontend JavaScript framework.\n* Type-safe Web APIs defined in gRPC+Protobuf. Move away from REST+JSON.\n* Standalone executable with all the assets embedded for easy deployment.\n* Automatically frontend code rebuild on page reload.\n\n## Development\n\n* Run `make generate` to regenerate the protofiles and the frontend with all static resources embedded in bundle.go. For more information about embedding, check:\n  - [vfsgen](https://github.com/shurcooL/vfsgen)\n  - and the reason [why it is chosen](https://tech.townsourced.com/post/embedding-static-files-in-go/)\n* Run `make serve` to start the web server. In this case, the static resources embedding is not used. They are served from disk as usual.\n  - Reload index.html could trigger a rebuild of main.wasm, just like wasmserve. Happy hacking!\n* Run `go build` (after running `make generate`) to get the standalone executable for release deployment.\n\n## Design\n\n```\n+----------------------+\n|   Admin dashboard    |\n+----------------------+\n| frontend Golang code |\n+----------+-----------+\n|  golang  |  protobuf |\n|  stdlib  |  message  |\n|          |  objects  |\n+----------+-----------+\n|  browser Fetch API   |\n+----------------------+\n|        HTTP2         |\n+----------------------+\n| backend gRPC server  |\n+----------------------+\n|   Business System    |\n+----------------------+\n```\n\n## Limitations\n\n* To support gRPC-Web in the browser, an older grpc-go with a customized [patch](https://github.com/grpc/grpc-go/pull/2174) applied must be used. As the grpc-go and protobuf-go changed frequently, an older tool chain must be kept to build the project.\n\n## Dependencies\n\n* Golang 1.14+\n* The Google protobuf compiler, `protoc`.\n* $ GO111MODULE=on go get github.com/golang/protobuf/protoc-gen-go@v1.3.2 (do not use cmd/protoc-gen-go-grpc)\n* github.com/golang/protobuf (do not use google.golang.org/protobuf)\n* github.com/aclisp/grpc-go @branch add-grpc-web-client (forked from johanbrandhorst/grpc-go in case the upstream might be destroyed)\n* github.com/improbable-eng/grpc-web @v0.9.6 (this is the latest version work with grpc-go above, since which CloseNotifier is [removed](https://github.com/improbable-eng/grpc-web/pull/478))\n\n## The Name\n\nThere are many so-called \"godashboard\" or \"goadmin\" projects, but no one is like this. The advantages are:\n\n* As a Gopher, developing everything from scratch in the full stack from frontend to backend is the motivation this project borns.\n* Thanks WebAssembly. Go developers can be competitive frontend developers, and you cann also share Go code between your frontend \u0026 backend.\n* Type-safe Web APIs will finally replace RESTful in the future.\n\n## Using `godashboard` as a beginning project\n\nThe branch `beginning` can be used as a start point to hacking. It contains a minimum WebAssembly-gRPC working demo.\n\n## References\n\n* [dotGo 2019 - Johan Brandhorst - Get Going With WebAssembly](https://youtu.be/osVHH7rjpxs?t=773)\n* [Live Go module index](https://dmitri.shuralyov.com/projects/live-module-index/)\n* [Go WebAssembly Wiki](https://github.com/golang/go/wiki/WebAssembly)\n* [The state of gRPC in the browser](https://grpc.io/blog/state-of-grpc-web/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faclisp%2Fgodashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faclisp%2Fgodashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faclisp%2Fgodashboard/lists"}