An open API service indexing awesome lists of open source software.

https://github.com/omdxp/chatapp

chat server with gRPC
https://github.com/omdxp/chatapp

grpc protobuf

Last synced: 9 months ago
JSON representation

chat server with gRPC

Awesome Lists containing this project

README

          

# chatapp

this chat tcp server is built with gRPC. messages are rpc streams.

# build server

```bash
docker build -t chatapp .
```

# run server

```bash
docker run -it -p 8080:8080 chatapp
```

# run client

```bash
go run client/main.go
```

you can run as many clients as you want.