1 unstable release

0.1.0 Oct 23, 2024

#266 in WebAssembly

Download history 140/week @ 2024-10-21 6/week @ 2024-10-28 8/week @ 2024-11-04

154 downloads per month

MIT license

800KB
1.5K SLoC

TypeScript 777 SLoC // 0.1% comments Rust 588 SLoC // 0.0% comments TSX 68 SLoC // 0.2% comments

render

Experimental JavaScript UI rendering library. Render uses a lightweight stack-based VM with minimal opcodes to encode DOM trees and run DOM operations either immediately or in retained mode (by diffing and patching bytecodes). Components are defined as views that serialize their attributes and children into Uint8Array instances.

Installation & usage

npm install librender

Refer to main.tsx for basic usage.

Features

  • Views
    • View - view instance serializer
    • Text - static text view with title
    • Button - static button with label
    • Container - dynamic view with optional attributes (e.g. tag name)
    • Tags corresponding to semantic elements (Container)
    • Attributes on views (attr method), deprecate opcode for inline styles
    • Event listeners on views (Button)
  • Virtual machine DOM
    • Create DOM nodes (OPCODE_CREATE_ELEMENT)
    • Decode 8-bit entries with static offsets (UTF-16 character codes)
    • Set DOM node attribute to least recent node (OPCODE_SET_ATTRIBUTE)
    • Append least recent nodes as parent-child (OPCODE_APPEND_CHILD)
    • Create DOM text node (OPCODE_TEXT_NODE)
    • Set innerHTML with in-memory string source
    • Append adjacent DOM nodes as siblings (OPCODE_APPEND_SIBLING)
    • Diffing and patching arbitrary bytecodes (partially complete)
    • Event listeners on least recent node (OPCODE_EVENT_LISTENER, requires __eventStore)
  • Consistency in rendering with timed requestAnimationFrame
  • Streaming instruction blocks to VM (createBytecodeStream, unsafe_streamBytecodeToVM)
  • Non-tracking reactive primitives in views
  • Precompiled bytecode from views (requires build tools)
  • Off the main thread view serialization (ThreadView)

Quick overview

Render relies on views to return byte arrays with exact alignment of data values and offsets. The VM does not fix program inputs which is why views form safe high-level wrappers representing extendable components. Aside, the default settings are supposed to be configurable.

Portability is the primary goal of this library. I wrote librender expecting that there could be a single optimizing bytecode IR for various web-based rendering libraries. To this effect, there is an imperative-procedural approach when defining view methods that correspond to raw bytecode.

Completeness of the virtual machine

The VM does not fully take the role of a DOM-based model and opcodes are only limited to DOM operations where inputs are serializable (e.g. event handlers are not serializable). It lacks features like pausability and resumability, async batch streaming, per-batch scheduling, and virtual prioritization, that could essentially improve rendering.

The structural description of the VM is:

  • The stack is reserved for holding references to handlers and raw strings
  • The memory applies to enabled shared memory (e.g. temporal view states) between VM instances
  • nodeCount is a counter that allows managing the nodeIndexStack in the DOM operations

Portability of the bytecode IR

WebAssembly modules are loaded as view slices into an array buffer representing a linear memory model. Since modules are precompiled, the bytecode could target librender with virtually no overhead. This would imply that optimizing the VM itself from the JavaScript source would improve existing programs without introducing layers of indirection.

With this enabled, various high-level libraries targeting the bytecode can be used as microfrontends with predictability. Currently, librender is barely useable so this will require major effort to put in place. Additionally, certain data structures can be linearly represented for uniformity, e.g. C-like structs with offsets require no deallocation in WebAssembly. Growing memory is as easy as incrementing a pointer.

Portability allows loading .bin files through a shared worker, which could be useful for monolithic SPAs that depend on server endpoints to fetch and render data in the main UI thread for client-side rendering.

Acknowledgements

Render does not provide unique insights into the approach rendering is done or criteria for commiting DOM nodes for painting. Other libraries such as React (scheduling model) and GlimmerVM (opcode-based rendering) are to be considered prior art in this regard.

License

Copyright © 2024 Elric Neumann. MIT License.

No runtime deps