#redirect #tcp #http-request #http-response

hyperlane

Hyperlane is a lightweight and high-performance Rust HTTP server library designed to simplify network service development. It supports HTTP request parsing, response building, and TCP communication, making it ideal for building modern web services. Additionally, it provides support for request and response middleware, WebSocket, and Server-Sent Events (SSE), enabling flexible and efficient real-time communication.

245 stable releases

Uses new Rust 2024

new 4.64.0 Apr 3, 2025
4.61.0 Mar 31, 2025
3.15.3 Feb 17, 2025
2.48.0 Jan 13, 2025
0.5.0 Dec 24, 2024

#1108 in Network programming

Download history 292/week @ 2024-12-18 1678/week @ 2024-12-25 3319/week @ 2025-01-01 1623/week @ 2025-01-08 3404/week @ 2025-01-15 239/week @ 2025-01-22 138/week @ 2025-01-29 1733/week @ 2025-02-05 1897/week @ 2025-02-12 3176/week @ 2025-02-19 2429/week @ 2025-02-26 2854/week @ 2025-03-05 1258/week @ 2025-03-12 3482/week @ 2025-03-19 1598/week @ 2025-03-26

9,467 downloads per month
Used in 2 crates

MIT license

230KB
1K SLoC

hyperlane

Official Documentation

Api Docs

Hyperlane is a lightweight and high-performance Rust HTTP server library designed to simplify network service development. It supports HTTP request parsing, response building, and TCP communication, making it ideal for building modern web services. Additionally, it provides support for request and response middleware, WebSocket, and Server-Sent Events (SSE), enabling flexible and efficient real-time communication.

Installation

To use this crate, you can run cmd:

cargo add hyperlane

Quick start

git clone https://github.com/ltpp-universe/hyperlane-quick-start.git

Use

use hyperlane::*;

async fn request_middleware(ctx: Context) {
    let socket_addr: String = ctx.get_socket_addr_or_default_string().await;
    ctx.set_response_header(SERVER, HYPERLANE)
        .await
        .set_response_header(CONNECTION, CONNECTION_KEEP_ALIVE)
        .await
        .set_response_header(CONTENT_TYPE, content_type_charset(TEXT_PLAIN, UTF8))
        .await
        .set_response_header(DATE, current_date_gmt())
        .await
        .set_response_header("SocketAddr", socket_addr)
        .await;
}

async fn response_middleware(ctx: Context) {
    let _ = ctx.send().await;
    let request: String = ctx.get_request_string().await;
    let response: String = ctx.get_response_string().await;
    ctx.log_info(&request, log_handler)
        .await
        .log_info(&response, log_handler)
        .await;
}

async fn root_route(ctx: Context) {
    ctx.set_response_status_code(200)
        .await
        .set_response_body("Hello hyperlane => /")
        .await;
}

async fn websocket_route(ctx: Context) {
    let request_body: Vec<u8> = ctx.get_request_body().await;
    let _ = ctx.send_response_body(request_body).await;
}

#[tokio::main]
async fn main() {
    let server: Server = Server::new();
    server.host("0.0.0.0").await;
    server.port(60000).await;
    server.enable_nodelay().await;
    server.log_dir("./logs").await;
    server.enable_inner_log().await;
    server.enable_inner_print().await;
    server.log_size(100_024_000).await;
    server.http_line_buffer_size(4096).await;
    server.websocket_buffer_size(4096).await;
    server.request_middleware(request_middleware).await;
    server.response_middleware(response_middleware).await;
    server.route("/", root_route).await;
    server.route("/websocket", websocket_route).await;
    let test_string: String = "Hello hyperlane".to_owned();
    server
        .route(
            "/test/panic",
            async_func!(test_string, |ctx| {
                println_success!(test_string);
                println_success!(ctx.get_request().await.get_string());
                panic!("Test panic\ndata: test");
            }),
        )
        .await;
    server.listen().await.unwrap();
}

License

This project is licensed under the MIT License. See the LICENSE file for details.

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Contact

For any inquiries, please reach out to the author at ltpp-universe root@ltpp.vip.

Dependencies

~17–24MB
~496K SLoC