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
- Host: GitHub
- URL: https://github.com/hyperxpizza/echo-tcp-server
- Owner: hyperxpizza
- Created: 2021-07-28T05:30:39.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-28T06:44:27.000Z (almost 5 years ago)
- Last Synced: 2025-12-17T07:20:28.067Z (7 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```