small-router

Crates.iosmall-router
lib.rssmall-router
version
sourcesrc
created_at2025-02-21 19:54:22.585825+00
updated_at2025-02-24 16:26:19.251926+00
descriptionA simple and small router for the small-http library
homepagehttps://github.com/bplaat/crates/tree/master/lib/small-router
repositoryhttps://github.com/bplaat/crates
max_upload_size
id1564629
Cargo.toml error:TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Bastiaan van der Plaat (bplaat)

documentation

README

Small-Router Rust library

A simple and small router for the small-http library

Getting Started

A simple example the opens a http server on serves a simple response:

use std::net::{Ipv4Addr, TcpListener};
use small_http::{Request, Response, Status};
use small_router::RouterBuilder;

fn home(_req: &Request, _ctx: &()) -> Response {
    Response::with_body("Home")
}
fn hello(req: &Request, _ctx: &()) -> Response {
    Response::with_body(format!(
        "Hello, {}!",
        req.params.get("name").unwrap_or(&"World".to_string())
    ))
}
fn not_found(_req: &Request, _ctx: &()) -> Response {
    Response::with_status(Status::NotFound).body("404 Not Found")
}

fn main() {
    let router = RouterBuilder::new()
        .get("/", home)
        .get("/hello/:name", hello)
        .fallback(not_found)
        .build();

    let listener = TcpListener::bind((Ipv4Addr::LOCALHOST, 8080))
        .unwrap_or_else(|_| panic!("Can't bind to port"));
    small_http::serve(listener, move |req| router.handle(req));
}

See the examples for many more examples.

Documentation

See the documentation for more information.

License

Copyright © 2024-2025 Bastiaan van der Plaat

Licensed under the MIT license.

Commit count: 237

cargo fmt