Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```