crusto/vespid/README.md

807 B

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.