Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wcygan/chat-v0
chat-v0
https://github.com/wcygan/chat-v0
Last synced: 2 days ago
JSON representation
chat-v0
- Host: GitHub
- URL: https://github.com/wcygan/chat-v0
- Owner: wcygan
- Created: 2024-06-09T22:50:08.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-12T00:33:42.000Z (5 months ago)
- Last Synced: 2024-07-13T09:12:51.905Z (4 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chat V0
The most basic chat application that simply keeps track of everyone who is connected and sends every messages to everyone
# Quickstart
Generate proto files
```
buf generate proto
```Run server
```
cd server
go run cmd/main.go
```Run client
```
cd client
go run cmd/main.go
```# Chat Application Examples
- [chat-v0](https://github.com/wcygan/chat-v0) - server that iterates over internal state to distribute messages to clients
- [chat-v1](https://github.com/wcygan/chat-v1) - server that uses nats (pub/sub) to distribute messages to clients