echo-rs

crate documentation

echo-rs provides a dead-simple HTTP echo server - i.e. it simply parrots back any request it receives in a developer-friendly JSON-serialized format.

It aims to provide a simple and convenient utility to assist in designing new applications, developing / testing API clients, or as a "dummy" workload for use in scaffolding new Kubernetes / cloud-native services.

License

AGPL-3.0-or-later

Features

echo-rs provides:

Basic Usage

Run the server locally -

bash docker run -it -p 8080:8080 --rm docker.io/thewondersmith/echo-rs:latest --metrics=false --log-level=debug

Then make a request to it with any HTTP client -

bash curl -X POST \ "http://localhost:8080/some/super-cool/endpoint?param1=some-param-value&param2=another-param-value" \ -H 'Content-Type: application/json' \ -H 'App-Specific-Header: app_specific_value' \ -d '{"target": "echo-rs", "expected": "response", "some": ["more", "none", null], "nested": {"turtles": {"all": {"the": {"way": "down"}}}}}'

echo-rs should return the JSON-serialized representation of the request -

json { "method": "POST", "path": "/some/super-cool/endpoint", "headers": { "user-agent": "curl/7.87.0", "host": "localhost:8080", "accept": "*/*", "content-type": "application/json", "app-specific-header": "app_specific_value", "content-length": "135" }, "params": { "param1": "some-param-value", "param2": "another-param-value" }, "body": { "expected": "response", "nested": { "turtles": { "all": { "the": { "way": "down" } } } }, "some": [ "more", "none", null ], "target": "echo-rs" } }

TODO: