https://github.com/mluts/chachachat
An attempt to do a chat in go
https://github.com/mluts/chachachat
Last synced: 17 days ago
JSON representation
An attempt to do a chat in go
- Host: GitHub
- URL: https://github.com/mluts/chachachat
- Owner: mluts
- Created: 2017-03-01T10:52:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-01T15:37:17.000Z (over 9 years ago)
- Last Synced: 2025-09-21T01:30:12.010Z (10 months ago)
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# chachachat
The attempt to do a chat in go
# How to use the server
```
go install github.com/mluts/chachachat
~/go/bin/chachachat :9999
```
# How to use the client
```
go install github.com/mluts/chachachat/chachachat-client
terminal1:
~/go/bin/chachachat-client :9999 user1
terminal2:
~/go/bin/chachachat-client :9999 user2
```
See your messages appear on the other side when you write something
# What can be better
The connections/users lookup is O(n), but can be O(1)