Improving README

This commit is contained in:
Pauan 2021-04-30 14:44:38 +02:00
parent 07e76e834d
commit 16f09dd375
1 changed files with 5 additions and 3 deletions

View File

@ -7,10 +7,12 @@ Overview
========
Dominator is one of the fastest DOM frameworks in the world ([it is just as fast as Inferno][benchmark]).
It is close to the metal and has almost no overhead.
It scales incredibly well even with very large applications, because updates are `O(1)` time, no matter
how big or deeply nested your application is.
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.
Despite that, it doesn't sacrifice ergonomics: it provides a convenient high level declarative API which
feels similar to React, but is designed for Rust and FRP signals.