RSCx is a server-side HTML rendering engine library with a neat developer experience and great performance.
Features:
All the examples can be found in rscx/examples/.
```rs use rscx::{component, html, props, CollectFragment};
async fn main() -> Result<(), Box
// simple function returning a String // it will call the Items() function async fn app() -> String { let s = "ul { color: red; }"; html! {
} }// components can optionally accept a "props struct" pub struct SectionProps { title: String, children: String, // children also work! }
fn Section(props: SectionProps) -> String { html! {
// mark functions with #[component] to use them as components inside html! macro
async fn Items() -> String { let data = loaddataasync().await; html! {
// async functions can be easily used in the body of a component
async fn loaddataasync() -> Vec
Disclaimer: RSCx is for servers, as the name suggests. Therefore the following comparisons with Leptos are unfair. This library contains only a fraction of Leptos' features.
Disclaimer 2: The benchmarks are pretty basics and should not influence your decision on whether to use or not this library. Focus on the DX. They are included as I kept running them to make sure I didn't fall too much behind alternatives.
The time in the middle of the three is the average.
``` cd bench
cargo criterion ```
many_attrs/maud_many_attrs
time: [232.11 ns 238.52 ns 247.28 ns]
many_attrs/html_node_many_attrs
time: [65.056 µs 65.355 µs 65.686 µs]
many_attrs/leptos_many_attrs
time: [929.47 ns 936.84 ns 945.02 ns]
many_attrs/rscx_many_attrs
time: [231.12 ns 238.95 ns 249.42 ns]
RSCx and Maud pretty much are the same as their macros output is effectively a static string with the result.
small_fragment/maud_small_fragment
time: [104.95 ns 105.03 ns 105.15 ns]
small_fragment/leptos_small_fragment
time: [1.7115 µs 1.7139 µs 1.7169 µs]
small_fragment/rscx_small_fragment
time: [99.514 ns 99.588 ns 99.673 ns]
RSCx offers a better DX than Maud, as the syntax is nicer and values such as i32 can be passed as props/attributes, while in Maud every attribute must be a static string.
async_list/maud_async_list
time: [2.3114 µs 2.3241 µs 2.3377 µs]
async_list/leptos_async_list
time: [55.149 µs 55.228 µs 55.315 µs]
async_list/rscx_async_list
time: [5.4809 µs 5.4987 µs 5.5151 µs]
I'll reiterate the disclaimer: Leptos is not specifically made for SSR. Going through its reactivity system (using async resources) adds overhead.