Go to file
Pauan 21daff2879 Changing apply_methods/html/svg to run each method call on a separate statement
This means that any locks will be freed at the end of the method call
2021-05-17 09:42:46 +02:00
examples Adding in livereload to the examples 2020-04-26 05:24:53 +02:00
src Changing apply_methods/html/svg to run each method call on a separate statement 2021-05-17 09:42:46 +02:00
.gitignore Breaking change: dominator now uses wasm-bindgen rather than stdweb 2019-06-11 15:29:46 +02:00
Cargo.toml Version 0.5.16 2021-04-30 18:24:53 +02:00
LICENSE Initial commit 2018-02-20 20:33:26 -10:00
README.md Improving README 2021-04-30 19:40:04 +02:00

README.md

crates.io docs.rs

Zero-cost ultra-high-performance declarative DOM library using FRP signals for Rust!

Overview

Dominator is one of the fastest DOM frameworks in the world (it is just as fast as Inferno).

It does not use VDOM, instead it uses raw DOM nodes for maximum performance. It is close to the metal and has almost no overhead: everything is inlined to raw DOM operations.

It scales incredibly well even with very large applications, because updates are always O(1) time, no matter how big or deeply nested your application is.

It has a convenient high level declarative API which works similar to React components, but is designed for Rust and FRP signals.

It is generally feature complete, though more convenience methods might be added over time.

It is quite stable: breaking changes are very rare, and are handled with the normal semver system.

I have successfully used Dominator on multiple large applications, and it performed excellently.

Running the examples

Just do yarn and then yarn start (it will take a while to compile the dependencies, please be patient)

Community

We have a Discord server. Feel free to ask any Dominator questions there.