Dioxus-core

This is the core crate for the Dioxus Virtual DOM. This README will focus on the technical design and layout of this Virtual DOM implementation. If you want to read more about using Dioxus, then check out the Dioxus crate, documentation, and website.

Internals

Dioxus-core builds off the many frameworks that came before it. Notably, Dioxus borrows these concepts:

Goals

We have big goals for Dioxus. The final implementation must:

Optimizations

Design Quirks

rust let text = TextRenderer::render(html! {<div>"hello world"</div>}); // <div>hello world</div>

```rust

fn main() { tide::new() .get("blah", serveapp("../")) .get("blah", wshandler(serve_app)) }

fn serveapp(ctx: &Context<()>) -> VNode { let livecontext = LiveContext::new() .withhandler("graph", graphcomponent) .withhandler("graph", graphcomponent) .withhandler("graph", graphcomponent) .withhandler("graph", graphcomponent) .withhandler("graph", graphcomponent) .withhandler("graph", graph_component) .build();

ctx.view(html! {
    <LiveContext ctx={livecontext}>
        <App />
    </ LiveContext>
})

}

```