Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/xion/echo_server

Echo server in Rust
https://github.com/xion/echo_server

echo-server hello-world rust

Last synced: about 2 months ago
JSON representation

Echo server in Rust

Awesome Lists containing this project

README

        

# Echo server

Simple echo server written in Rust.

```
$ cargo run -- -h
Usage: echo_server [options]

Options:
-h, --help Show this usage message
-p, --port [PORT] Port to listen on

$ cargo run -- -p 4444

# in other terminal window
$ nc localhost 4444
Hi!
Hi!
It works!
It works!
```