807 B
807 B
vespid - an SSR-only web framework for Rust
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.