Roa

Roa is an async web framework inspired by koajs, lightweight but powerful.

[![Build status](https://img.shields.io/travis/Hexilee/roa/master.svg)](https://travis-ci.org/Hexilee/roa) [![codecov](https://codecov.io/gh/Hexilee/roa/branch/master/graph/badge.svg)](https://codecov.io/gh/Hexilee/roa) [![Rust Docs](https://docs.rs/roa/badge.svg)](https://docs.rs/roa) [![Crate version](https://img.shields.io/crates/v/roa.svg)](https://crates.io/crates/roa) [![Download](https://img.shields.io/crates/d/roa.svg)](https://crates.io/crates/roa) [![Version](https://img.shields.io/badge/rustc-1.39+-lightgray.svg)](https://blog.rust-lang.org/2019/11/07/Rust-1.39.0.html) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/Hexilee/roa/blob/master/LICENSE)

Examples | Guide | Cookbook


Feature highlights

Next step

Get start

```toml

Cargo.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_std::main]

async fn main() -> Result<(), Box> { let mut app = App::new(()); app.end(|ctx| async move { ctx.write_text("Hello, World").await }); app.listen("127.0.0.1:8000", |addr| { println!("Server is listening on {}", addr) })? .await?; Ok(()) } ```