From ee7fe4336996660f4beb5566180b52a49f121a20 Mon Sep 17 00:00:00 2001 From: Jan Andrle Date: Mon, 10 Mar 2025 16:25:08 +0100 Subject: [PATCH] :abc: --- README.md | 1 + docs/p09-ssr.html.js | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/README.md b/README.md index bc62e42..69c40aa 100644 --- a/README.md +++ b/README.md @@ -122,3 +122,4 @@ Signals are the reactive backbone of Deka DOM Elements: - [potch/signals](https://github.com/potch/signals) - A small reactive signals library - [jaandrle/dollar_dom_component](https://github.com/jaandrle/dollar_dom_component) - Functional DOM components without JSX/virtual DOM +- [mxjp/rvx: A signal based frontend framework](https://github.com/mxjp/rvx) diff --git a/docs/p09-ssr.html.js b/docs/p09-ssr.html.js index a420124..4225640 100644 --- a/docs/p09-ssr.html.js +++ b/docs/p09-ssr.html.js @@ -31,6 +31,19 @@ export function page({ pkg, info }){ This is achieved through integration with for example ${el("a", { href: "https://github.com/tmpvar/jsdom", textContent: "jsdom" })}, a JavaScript implementation of web standards for Node.js. `), + el("p").append(...T` + Additionally, you might consider using these alternative solutions: + `), + el("ul").append( + el("li").append(...T` + ${el("a", { href: "https://github.com/capricorn86/happy-dom", textContent: "happy-dom" })} - A JavaScript implementation + of a web browser without its graphical user interface that's faster than jsdom + `), + el("li").append(...T` + ${el("a", { href: "https://github.com/WebReflection/linkedom", textContent: "linkedom" })} - A lightweight DOM implementation + specifically designed for SSR with significantly better performance than jsdom + `), + ), el(code, { src: fileURL("./components/examples/ssr/intro.js"), page_id }), el(h3, t`Why Server-Side Rendering?`),