~dricottone/simple-chat

simple-chat/README.md -rw-r--r-- 776 bytes
652c4609Dominic Ricottone Added README 1 year, 12 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Simple Chat

A simple chat server.

The only state for this server is the pooled connections.
Messages are not read or logged.
Completely agnostic to encrypted messages.


## Usage

Go to [www.dominic-ricottone.com/chat](https://www.dominic-ricottone.com/chat/)
to see it in action.

If trying to re-use and deploy this code, first change the hardcoded address in
`server/main.go` (line 103). Then try:

```
make server
```

This binary listens on port 8080 exposes a websocket,
which needs to be interfaced by a separate client.
See the `clients` directory for some ideas.


## Change Log

 + v1.0.1 - Updated dependencies
 + v1.0.0 - The imaginary tag, referring to all that came before tags


## License

I share the contents of this repository under the GPL 3 license.