dioxus/packages/interpreter
2022-02-02 01:50:43 -05:00
..
gen Merge branch 'master' into jk/form-ma 2022-02-02 01:50:43 -05:00
src Merge branch 'master' into jk/form-ma 2022-02-02 01:50:43 -05:00
build.rs ci: move gen folder out of src 2022-02-01 16:07:50 -05:00
Cargo.toml release: make interpreter crate publishable 2022-02-01 15:45:03 -05:00
README.md feat: it works everywhere 2022-02-02 01:08:59 -05:00
tsconfig.json ci: move gen folder out of src 2022-02-01 16:07:50 -05:00

JS Interpreter

After diffing old and new trees, the Dioxus VirtualDom produces patches that are used to modify the existing Dom. We can send these patches anywhere - including targets without WASM support.

In renderers with support for JavaScript, we use the interpreter from this repository - written in TypeScript - to patch the Dom. This lets us circumvent any overhead on the Rust <-> Dom boundary and keep consistency in our interpreter implementation in web/webview targets.

For now - both Dioxus Web and Dioxus Desktop (webview) use the same interpreter code with tweaks.