Skip to content

Commit

Permalink
README: Linkify terms
Browse files Browse the repository at this point in the history
This should help non-web-devs to understand what the project is about.
  • Loading branch information
hoijui authored Sep 27, 2024
1 parent 4959f3c commit 51ed9e2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[![crates.io](https://img.shields.io/crates/v/dominator.svg)](https://crates.io/crates/dominator)
[![docs.rs](https://docs.rs/dominator/badge.svg)](https://docs.rs/dominator)

Zero-cost ultra-high-performance declarative DOM library using FRP signals for Rust!
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
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
Expand All @@ -34,3 +34,7 @@ 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
[DOM]: https://en.wikipedia.org/wiki/Document_Object_Model
[FRP]: https://en.wikipedia.org/wiki/Functional_reactive_programming
[Rust]: https://www.rust-lang.org/
[VDOM]: https://en.wikipedia.org/wiki/Virtual_DOM

0 comments on commit 51ed9e2

Please sign in to comment.