From 16f09dd375fe3e278dd3551cafc49111b15f5fdd Mon Sep 17 00:00:00 2001 From: Pauan Date: Fri, 30 Apr 2021 14:44:38 +0200 Subject: [PATCH] Improving README --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1b4b367..97c8a9e 100644 --- a/README.md +++ b/README.md @@ -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.