1.0.0-beta.1 • Published 10 months ago

@miyauci/vdom v1.0.0-beta.1

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

vdom

deno land deno doc GitHub release (latest by date) codecov License

test NPM standard-readme compliant semantic-release: angular

Virtual DOM specification and diff-patch algorithm.

Background

Various projects with virtual-dom at their core have problems with their modularity.

In particular, the codebase is chaotic, with a mixture of declarative HTML and reactive programming.

This project provides a virtual-dom module for doing declarative HTML.

Install

deno.land:

import * as mod from "https://deno.land/x/vdom/mod.ts";

npm:

npm i @miyauci/vdom

Usage

/// <reference lib="dom" />
import {
  createElement,
  diff,
  patch,
  type VElement,
  VNodeType,
} from "https://deno.land/x/vdom/mod.ts";

function app(count: number): VElement {
  return {
    nodeType: VNodeType.Element,
    tagName: "div",
    attributes: [{
      nodeType: VNodeType.Attribute,
      name: "style",
      value: "color: red;",
    }],
    children: [
      { nodeType: VNodeType.Text, data: count.toFixed() },
    ],
  };
}

let count = 0;
let vnode = app(count);
const root = createElement(vnode, document);
document.body.append(root);

setInterval(() => {
  const newVNode = app(++count);
  const patches = diff(vnode, newVNode);

  patch(root, patches, document);
  vnode = newVNode;
}, 1000);

Documentation

API

See deno doc for all APIs.

Contributing

See contributing.

License

MIT © 2023 Tomoki Miyauchi