DOM Expressions
DOM Expressions is a Rendering Runtime for reactive libraries that do fine grained change detection. These libraries rely on concepts like Observables and Signals rather than Lifecycle functions and the Virtual DOM. Standard JSX transformers are not helpful to these libraries as they need to evaluate their expressions in isolation to avoid re-rendering unnecessary parts of the DOM.
This package wraps libraries like KnockoutJS or MobX and use them independent of their current render systems using a small library to render pure DOM expressions. This approach has been proven to be incredibly fast, dominating the highest rankings in the JS Framework Benchmark.
It is designed to be used with a companion render API. Currently there is a JSX Babel Plugin, and Tagged Template Literals, and HyperScript runtime APIs.
Example Implementations
- Solid: A declarative JavaScript library for building user interfaces.
- ko-jsx: Knockout JS with JSX rendering.
- mobx-jsx: Ever wondered how much more performant MobX is without React? A lot.
Runtime Wrapper API
To create a runtime you pass an object with the following methods to the createRuntime method:
wrap(fn) : void
This is called around all expressions. This is typically where you wrap the expression with a computation in the desired library and handle any value preparsing. Your wrap method is expected to call fn with the previously evaluated value if the arity is 1 to allow for reducing computations.
root(fn) : any
This indicates a new disposable context. The fn should be provided a dispose method that can be called to free all computations in the context.
sample(fn) : any
A method that causes dependencies within not to be tracked.
cleanup(fn) : void
This method should register a cleanup method to be called when the context is released.
JSX
This library's companion is Babel Plugin JSX DOM Expressions. This by far the best way to use this library. Pre-compilation lends to the best performance since the whole template can be analyzed and optimal compiled into the most performant JavaScript. This allows for not only the most performant code, but the cleanest and the smallest.
Tagged Template
If precompilation is not an option Tagged Template Literals are the next best thing. Lit DOM Expressions provides a similar experience to the JSX, compiling templates at runtime into similar code on first run. This option is the largest in size and memory usage but it keeps most of the performance and syntax from the JSX version.
HyperScript
While not as performant as the other options this library provides a mechanism to expose a HyperScript version. Hyper DOM Expressions offers the greatest flexibility working with existing tooling for HyperScript and enables pure JS DSLs.
Work in Progress
This is still a work in progress. My goal here is to better understand and generalize this approach to provide non Virtual DOM alternatives to developing web applications.