https://github.com/tkw1536/wssecho
A quick and dirty web socket echo server
https://github.com/tkw1536/wssecho
docker golang websocket
Last synced: about 2 months ago
JSON representation
A quick and dirty web socket echo server
- Host: GitHub
- URL: https://github.com/tkw1536/wssecho
- Owner: tkw1536
- License: mit
- Created: 2021-11-08T09:31:03.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-08T10:10:28.000Z (over 4 years ago)
- Last Synced: 2025-01-27T22:57:10.784Z (over 1 year ago)
- Topics: docker, golang, websocket
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wssecho

A quick dummy websocket implementation that echoes and can be used for testing.
Run it using:
```bash
go run . -bind localhost:8080
```
The client code is in [index.js](./index.js), the main server code in [main.go](./main.go).