19 releases
new 0.6.0-alpha.4 | Nov 1, 2024 |
---|---|
0.6.0-alpha.2 | Aug 7, 2024 |
0.5.6 | Jul 18, 2024 |
0.5.0 | Mar 28, 2024 |
0.1.0 | Sep 25, 2021 |
#251 in HTTP server
2,943 downloads per month
Used in 10 crates
(9 directly)
420KB
7.5K
SLoC
Dioxus Server-Side Rendering (SSR)
Render Dioxus to valid html.
Resources
This crate is a part of the broader Dioxus ecosystem. For more resources about Dioxus, check out:
Overview
Dioxus SSR provides utilities to render Dioxus components to valid HTML. Once rendered, the HTML can be rehydrated client-side or served from your web server of choice.
# use dioxus::prelude::*;
fn app() -> Element {
rsx!{
div {"hello world!"}
}
}
let mut vdom = VirtualDom::new(app);
vdom.rebuild_in_place();
let text = dioxus_ssr::render(&vdom);
assert_eq!(text, "<div>hello world!</div>")
Basic Usage
The simplest example is to simply render some rsx!
nodes to HTML. This can be done with the render_element
API.
# use dioxus::prelude::*;
let content = dioxus_ssr::render_element(rsx!{
div {
for i in 0..5 {
"Number: {i}"
}
}
});
Rendering a VirtualDom
# use dioxus::prelude::*;
# fn app() -> Element { todo!() }
let mut vdom = VirtualDom::new(app);
vdom.rebuild_in_place();
let content = dioxus_ssr::render(&vdom);
Usage in pre-rendering
This crate is particularly useful in pre-generating pages server-side and then selectively loading Dioxus client-side to pick up the reactive elements.
This crate supports hydration out of the box. However, both the client and server must generate the exact same VirtualDOMs - the client picks up its VirtualDOM assuming that the pre-rendered page output is the same. To do this, you need to make sure that your VirtualDOM implementation is deterministic! This could involve either serializing our app state and sending it to the client, hydrating only parts of the page, or building tests to ensure what's rendered on the server is the same as the client.
With pre-rendering enabled, this crate will generate element nodes with Element IDs pre-associated. During hydration, the Dioxus-WebSys renderer will attach the Virtual nodes to these real nodes after a page query.
To enable pre-rendering, simply set the pre-rendering flag to true.
# use dioxus::prelude::*;
# fn App() -> Element { todo!() }
let mut vdom = VirtualDom::new(App);
vdom.rebuild_in_place();
let mut renderer = dioxus_ssr::Renderer::new();
renderer.pre_render = true;
let text = renderer.render(&vdom);
Usage in server-side rendering
Dioxus SSR can also be used to render on the server. You can just render the VirtualDOM to a string and send that to the client.
# use dioxus::prelude::*;
fn App() -> Element {
rsx! { div { "hello world!" } }
}
let mut vdom = VirtualDom::new(App);
vdom.rebuild_in_place();
let text = dioxus_ssr::render(&vdom);
assert_eq!(text, "<div>hello world!</div>")
The rest of the space - IE doing this more efficiently, caching the VirtualDom, etc, will all need to be a custom implementation for now.
Usage in static site generation
Dioxus SSR is a powerful tool to generate static sites. Using Dioxus for static site generation is a bit overkill, however. The new documentation generation library, Doxie, is essentially Dioxus SSR on steroids designed for static site generation with client-side hydration.
Again, simply render the VirtualDOM to a string using render
or any of the other render methods.
Dependencies
~2.5–8MB
~67K SLoC