#axum #router #centralized #maintainable #typed-routing

better-routes

A powerful Rust library designed for generating type-safe and maintainable Axum routers

10 releases

0.3.3 Aug 29, 2024
0.3.2 Aug 28, 2024
0.2.0 Aug 21, 2024
0.1.4 Jul 31, 2024

#471 in Development tools

Download history 420/week @ 2024-07-28 23/week @ 2024-08-04 3/week @ 2024-08-11 148/week @ 2024-08-18 550/week @ 2024-08-25 25/week @ 2024-09-01

726 downloads per month

MIT license

16KB

Better Routes

better_routes is a macro for centralizing all routes in an Axum application, making routing type-safe, maintainable, and less error-prone. It allows you to define routes, their handlers, and rejections in a single place, simplifying your application's routing logic.

Usage

Here’s a simple example demonstrating how to use better_routes.

Example

use axum_extra::routing::RouterExt;
use axum_extra::routing::TypedPath;
use better_routes::routes;
use serde::Deserialize;

#[derive(Deserialize)]
struct Foo {
    id: usize,
}

async fn foo(foo_path: Foo) {
    println!("id: {}", foo_path.id);
}

#[derive(Deserialize)]
struct Bar;

async fn bar(_: Bar) {}

// Define routes using the `routes!` macro.
routes! {
    name => pub AllRoutes, // Visibility is optional
    "/foo/:id" => Foo {
        get => foo
    },
    "/bar" => Bar {
        post => bar
    },
}

#[tokio::main]
async fn main() {
    // Use the router function generated by the `routes!` macro.
    let app = AllRoutes::routes();

    // Generate a URI from the `Foo` instance
    let foo_uri = Foo { id: 42 }.to_uri();
    println!("foo_uri: {}", foo_uri); // Output: foo_uri: /foo/42

    // Start the server
    let tcp_listener = tokio::net::TcpListener::bind("127.0.0.1:3000")
        .await
        .unwrap();

    axum::serve(tcp_listener, app).await.unwrap();
}

Documentation

For more advanced usage, including state and rejection handling, please refer to the full documentation or explore additional examples provided in the codebase.

License

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

Dependencies

~260–700KB
~17K SLoC