1.4.0 • Published 11 months ago

ui-io v1.4.0

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

Data driven web user interface library

ui-io is a library for connecting data to HTML or SVG user interfaces.

import { HTML, Data } from "ui-io";

// attach to a document and get element factories:
const { h1, div } = HTML(document);

document.body.append(
    // create an h1 element, and add content to it:
    h1("Hello world!"),
    // Data tracks changes to an item of data:
    div(Data.periodic(Date, 1000))
);

See https://davidb.uk/ui-io for more live and editable examples!

1.4.0

11 months ago

1.3.1

1 year ago

1.3.0

1 year ago

1.2.1

2 years ago

1.2.0

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.0

2 years ago