#javascript #dom #reactive #signal #frp

dominator2

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

4 releases

0.5.26 Apr 7, 2022
0.5.25 Apr 7, 2022
0.5.24 Mar 28, 2022
0.5.23 Mar 28, 2022

#1789 in Web programming

26 downloads per month

MIT license

145KB
3.5K SLoC

This is a fork of dominator, so I can merge some docs etc. that I find useful. Maybe in the future I'll get the changes merged upstream and make this crate redundant.


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][benchmark]).

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](https://discord.gg/fDFGvnR). Feel free to ask any Dominator questions there.

[benchmark]: https://rawgit.com/krausest/js-framework-benchmark/master/webdriver-ts-results/table.html

Dependencies

~10MB
~202K SLoC