Roa is an async web framework inspired by koajs, lightweight but powerful.
[](https://travis-ci.org/Hexilee/roa) [](https://codecov.io/gh/Hexilee/roa) [](https://docs.rs/roa) [](https://crates.io/crates/roa) [](https://crates.io/crates/roa) [](https://blog.rust-lang.org/2019/11/07/Rust-1.39.0.html) [](https://github.com/Hexilee/roa/blob/master/LICENSE)
```toml
[dependencies] roa = "0.3" async-std = { version = "1.4", features = ["attributes"] } ```
```rust use roa::core::App; use roa::preload::*; use std::error::Error as StdError;
async fn main() -> Result<(), Box