Skip to content

aidenybai/hundred

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tiny-vdom

Smallest possible virtual DOM implementation.

Installation

npm install tiny-vdom

Usage

index.js

import { h, createElement, patch } from 'tiny-vdom';

const el = createElement(h('div'));

patch(el, h('div', null, 'Hello World!'), h('div'));

License

tiny-vdom is MIT-licensed open-source software by Aiden Bai.