Show HN: BDC – Ergonomic, sub 1KiB virtual DOM library


W3Schools
Show HN: BDC – Ergonomic, sub 1KiB virtual DOM library
by bwhmather on Hacker News.
BDC is a simple library for updating the DOM to match a javascript description.
Does not require JSX or a compilation step. clobber(
document.body,
h(“marquee”, [
h(“span”, {“style”: “font-weight: bold”}, “Hello”), “, “,
h(“blink”, “world”), “!”,
]),
);

Very fast to first render, moderately slow on subsequent updates. Prompted by the post on millionjs, which compiles user code to hit the same outrageously small size target.


W3Schools

Leave a comment