crusto/vespid
2024-12-11 23:15:51 +03:00
..
macros repo view and top level file/dir view 2024-12-11 23:15:51 +03:00
src repo view and top level file/dir view 2024-12-11 23:15:51 +03:00
Cargo.toml repo view and top level file/dir view 2024-12-11 23:15:51 +03:00
LICENSE repo view and top level file/dir view 2024-12-11 23:15:51 +03:00
README.md repo view and top level file/dir view 2024-12-11 23:15:51 +03:00

vespid - an SSR-only web framework for Rust

License: AGHL v1 Please don't upload to GitHub

vespid is a Rust web framework that is SSR-only, meaning that it just renders HTML.

vespid is very much inspired by leptos, and if you look at it from this perspective, it's just leptos without the WASM, and tailored for axum.

Most of the framework's code are just utilities, like error handling using an <ErrorBoundary> component (with a bit taken from leptos's throw_error), an Error type that is just eyre::Error + axum::http::StatusCode, etc.