Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thehxdev/echo-go
Simple echo TCP server
https://github.com/thehxdev/echo-go
Last synced: 30 days ago
JSON representation
Simple echo TCP server
- Host: GitHub
- URL: https://github.com/thehxdev/echo-go
- Owner: thehxdev
- Created: 2024-11-29T09:06:52.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-29T09:08:50.000Z (about 1 month ago)
- Last Synced: 2024-12-01T09:28:00.416Z (about 1 month ago)
- Language: Go
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Echo-go
Simple echo TCP server written in [Go](https://go.dev).## How to use
Run the server (listens on port 8000 by default):
```bash
go run .
```Connect to server with netcat or telnet:
```bash
telnet 127.0.0.1 8000
# Or
nc 127.0.0.1 8000
```