Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1 KB

README.md

File metadata and controls

48 lines (36 loc) · 1 KB

juri logo


crates package


Juri

HTTP Framework

Getting Started

Please refer to Juri Document

Example

cargo add juri
cargo add async-std
use juri::{Request, Response, Router, handler};
use std::net::SocketAddr;

#[handler]
fn handle_index(_request: &Request) -> juri::Result<Response> {
    Ok(Response::html("Hello Juri"))
}

#[juri::main]
async fn main() {
    let mut router = Router::new();
    router.at("/").get(handle_index);

    let addr = SocketAddr::from(([127, 0, 0, 1], 7878));
    juri::Server::bind(addr).server(router).await.unwrap();
}

License

MIT License