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

https://github.com/hyperxpizza/echo-tcp-server

Echo tcp server and client written in Go
https://github.com/hyperxpizza/echo-tcp-server

Last synced: 4 months ago
JSON representation

Echo tcp server and client written in Go

Awesome Lists containing this project

README

          

# Echo tcp server
## How to run?
The first and the simplest solution is:
```
cd server
go run server.go
```

or you can run the server using docker-compose(remove the -d flag to see logs)
```
docker-compose up server
```

to run the client(remember to specify the port flag):
```
cd client
go run client.go --port=7777
```