HTTP echo server, that's it.
console
cargo install echo-server
The HTTP server listens to port: 8080
by default.
console
echo-server [8080]
All HTTP verbs are supported.
GET
requestconsole
curl -X GET localhost:8080
POST
requestconsole
curl -X POST -H "Content-Type: application/json" -d '{"hello": "world"}' localhost:8080
TODO
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.