dioxus/packages/ssr
2021-07-28 21:46:53 -04:00
..
.vscode Feat: dirty hack to enable send + sync on virtual dom 2021-05-28 00:28:09 -04:00
examples wip: making progress on diffing and hydration 2021-07-28 21:46:53 -04:00
src wip: making progress on diffing and hydration 2021-07-28 21:46:53 -04:00
Cargo.toml feat: omg what a dumb mistake 2021-07-27 00:27:07 -04:00
index.html feat: enable components in ssr 2021-07-11 15:17:55 -04:00
README.md wip: making progress on diffing and hydration 2021-07-28 21:46:53 -04:00

Dioxus SSR

Render a Dioxus VirtualDOM to a string.

// Our app:
const App: FC<()> = |cx| cx.render(rsx!(div {"hello world!"}));

// Build the virtualdom from our app
let mut vdom = VirtualDOM::new(App);

// This runs components, lifecycles, etc. without needing a physical dom. Some features (like noderef) won't work.
vdom.rebuild_in_place();

// Render the entire virtualdom from the root
let text = dioxus_ssr::render_root(&vdom);
assert_eq!(text, "<div>hello world!</div>")

Pre-rendering