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

https://github.com/sollimann/http-server

A basic http-server implementation in Rust
https://github.com/sollimann/http-server

Last synced: 7 months ago
JSON representation

A basic http-server implementation in Rust

Awesome Lists containing this project

README

          

# http-server

To test server, run the application:

```bash
$ cargo run
```

and pipe a request "TEST" to the TCP socket (IP address + Port number = web socket)
```bash
$ echo "TEST" | netcat 127.0.0.1 8080
```