Smallest possible virtual DOM implementation.
npm install tiny-vdom
index.js
import { h, createElement, patch } from 'tiny-vdom';
const el = createElement(h('div'));
patch(el, h('div', null, 'Hello World!'), h('div'));
tiny-vdom
is MIT-licensed open-source software by Aiden Bai.