https://github.com/cyan903/ws-gui
A simple cross-platform gui for sending/receiving websockets using fyne.
https://github.com/cyan903/ws-gui
cross-platform debugging-tool fyne gui websocket
Last synced: over 1 year ago
JSON representation
A simple cross-platform gui for sending/receiving websockets using fyne.
- Host: GitHub
- URL: https://github.com/cyan903/ws-gui
- Owner: Cyan903
- License: mit
- Created: 2022-03-17T04:15:39.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-24T05:55:39.000Z (over 4 years ago)
- Last Synced: 2025-01-23T18:48:43.586Z (over 1 year ago)
- Topics: cross-platform, debugging-tool, fyne, gui, websocket
- Language: Go
- Homepage:
- Size: 220 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ws-gui
  
A simple cross-platform gui for sending/receiving [websockets](https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API) using [fyne](https://fyne.io/). I originally made this so I could stop relying on web-based apps as they have issues when making requests to foreign hosts.

### To build:
Using [taskfile](https://taskfile.dev/):
```sh
$ task build # use build-dev for unminified version.
$ ./bin/ws.gui
```
### To run:
Make sure you're using go version `1.17` or later.
```
$ go get -u
$ go mod tidy
$ task run
```