https://github.com/ponyo877/ebiten-chat
💬 Simple avatar chat created with Ebitengine 💬
https://github.com/ponyo877/ebiten-chat
chat ebitengine go wasm
Last synced: about 1 month ago
JSON representation
💬 Simple avatar chat created with Ebitengine 💬
- Host: GitHub
- URL: https://github.com/ponyo877/ebiten-chat
- Owner: ponyo877
- Created: 2024-01-05T02:51:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-11T15:01:00.000Z (about 2 years ago)
- Last Synced: 2025-03-25T09:27:43.696Z (about 1 year ago)
- Topics: chat, ebitengine, go, wasm
- Language: Go
- Homepage:
- Size: 10.7 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ebiten Chat
Ebiten Chat is a simple avatar chat created with Ebitengine.
https://folks-chat.com/

# Features
- Written entirely in Go language.
- Real-time chatting through a WebSocket server.
- You can freely move your chosen avatar within the browser.
# Usage
You need to implement and connect to a WebSocket server.
The source code for the WebSocket server is not published, but it can be easily written in Go using gorilla/websocket.
For the client, build the WebAssembly and upload it to your web server.
```bash
GOOS=js GOARCH=wasm go build -ldflags -X 'main.wsScheme=ws -X main.wsHost=localhost:8000' -o ebiten_chat.wasm
```