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

https://github.com/li-plus/echo-server

A simple echo server using event-driven programming.
https://github.com/li-plus/echo-server

echo-server

Last synced: 20 days ago
JSON representation

A simple echo server using event-driven programming.

Awesome Lists containing this project

README

        

# Echo Server

A simple echo server like `nc` using event-driven programming.

## Quick Start

Compile the project

```sh
mkdir -p build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j
```

Run echo server

```sh
./echo_server -p 9999
```

Connect to server with `nc` in another terminal

```sh
nc localhost 9999
```