From ebea327cda40784b54beb128b05568342c6bbeab Mon Sep 17 00:00:00 2001 From: Pauan Date: Fri, 30 Apr 2021 01:36:07 +0200 Subject: [PATCH] Improving README --- Cargo.toml | 2 +- README.md | 15 ++++++++++----- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7a976c4..5a5a58e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "dominator" version = "0.5.15" authors = ["Pauan "] -description = "Zero cost declarative DOM library using FRP signals" +description = "Zero-cost ultra-high-performance declarative DOM library using FRP signals" repository = "https://github.com/Pauan/rust-dominator" homepage = "https://github.com/Pauan/rust-dominator" readme = "README.md" diff --git a/README.md b/README.md index 9bf343e..9f889a7 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,26 @@ [![crates.io](http://meritbadge.herokuapp.com/dominator)](https://crates.io/crates/dominator) [![docs.rs](https://docs.rs/dominator/badge.svg)](https://docs.rs/dominator) -Zero cost declarative DOM library using FRP signals for Rust! +Zero-cost ultra-high-performance declarative DOM library using FRP signals for Rust! Status ====== +Dominator is one of the fastest DOM frameworks in the world ([it is just as fast as Inferno][benchmark]), +and it scales incredibly well even with very large applications. + +Dominator is close to the metal, it has almost no overhead, which means it is almost never the bottleneck, +instead the bottleneck is the browser itself. + +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. + 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. -Dominator is one of the fastest DOM frameworks in the world ([it is just as fast as Inferno][benchmark]), -and it scales incredibly well even with very large applications. Dominator is so fast that it is -almost never the bottleneck, instead the real bottleneck is the browser itself. - Running the examples ====================