ryansolid / vuerx-jsx

Vue Reactivity with Fine-Grained Rendering

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VueRX JSX

This library is a demonstration of how Vue's Reactivity system can be leveraged directly in JSX for considerably better performance than pairing it with a Virtual DOM library. Even the fastest Virtual DOM library will have overhead when reconciling many small discrete changes into a scheduled render and patch.

It accomplishes this with using Babel Plugin JSX DOM Expressions. It compiles JSX to DOM statements and wraps expressions in functions that can be called by the library of choice. In this case effect wraps these expressions ensuring the view stays up to date. Unlike Virtual DOM only the changed nodes are affected and the whole tree is not re-rendered over and over. Unlike even Vue 3 there is no hard tie to Components which should allow this approach to significantly exceed its performance.

See it as a top performer on the JS Framework Benchmark.

To use call render:

import { render } from 'vuerx-jsx';

render(App, document.getElementById('main'));

And include 'babel-plugin-jsx-dom-expressions' in your babelrc, webpack babel loader, or rollup babel plugin.

"plugins": [["jsx-dom-expressions", {moduleName: 'vuerx-jsx'}]]

For TS JSX types add to your tsconfig.json:

"jsx": "preserve",
"jsxImportSource": "vuerx-jsx" 

Installation

> npm install vuerx-jsx babel-plugin-jsx-dom-expressions

Example

Vue Counter

API

VueRX JSX works with function components. It also ships a specialize map function for optimal list rendering that takes an array as it's first argument.

const list = ref(["Alpha", "Beta", "Gamma"]);

<ul>{
  map(() => list.value, item => <li>{item}</li>)
}</ul>

VueRX JSX also supports a Context API.

Alternatively this library supports Tagged Template Literals or HyperScript for non-precompiled environments by installing the companion library and including variants:

import { html } from 'vuerx-jsx/html'; // or
import { h } from 'vuerx-jsx/h';

There is a small performance overhead of using these runtimes but the performance is still very impressive. Tagged Template solution is much more performant that the HyperScript version, but HyperScript opens up compatibility with some companion tooling like:

Further documentation available at: Lit DOM Expressions and Hyper DOM Expressions.

About

Vue Reactivity with Fine-Grained Rendering

License:MIT License


Languages

Language:TypeScript 91.5%Language:JavaScript 8.5%