Why would anyone use WCB?
The WebComponent base class gives a full component development experience at the lightest-weight possible: the minimum code to boost productivity.
The following are the main reasons WCB exist.
- It is the cheapest runtime reactivity you can buy. Smallest footprint for a full authoring experience — declarative templates, typed prop⇄attribute sync, lifecycle hooks, and state-preserving re-renders. Every alternative with comparable ergonomics costs 1.4×–5× more. If your budget is “a component on a mostly-static page”, WCB fits where Lit and FAST are the heaviest thing on the wire.
- Zero tooling, genuinely. No compiler, no decorators, no build step: one
importfrom a CDN in a<script type="module">works on current browsers. The whole mental model isstatic props+template+ four hooks, and the shipped source is readable in one sitting — the entire library is smaller than most libraries’ documentation on their update scheduling. - Attribute-first reactivity is HTML-native. Because props serialize to attributes, initial state can be rendered by any server in plain HTML — no JS-framework SSR integration needed — and components stay inspectable/debuggable in devtools as ordinary attributes.
- Light DOM by default. Global stylesheets, forms, and third-party CSS just work; and the shadow DOM is one static field away when you want encapsulation.
- The size gate is a governed value. Every byte added must justify itself in the size change log, enforced by
size-limitbudgets in CI. Smart diffing is the largest single addition in the project’s history and it cost 0.42 kB.
When WCB is the wrong choice — pick honestly:
- Reorderable lists of stateful items: patching is positional, not keyed; preserved focus/animation follows the position, not the item. Lit’s
repeator FAST handle this correctly. - High-frequency updates on large trees: WCB re-renders synchronously per prop write and diffs the whole vnode tree; Lit/FAST update only the affected bindings on a batched schedule.
- SSR with client hydration: Lit has a real hydration story; Elena is built around progressive enhancement. WCB renders client-side after connect.
- Big-team, long-horizon design systems: Google (Lit) and Microsoft (FAST) have big backing and ecosystems; while Elena is purpose-built for design systems.
For the measured numbers and the capability-by-capability breakdown behind these claims, see WCB & similar libraries.