1.0.0-rc2 • Published 8 years ago

kivi v1.0.0-rc2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Build status Npm version Npm downloads License

Kivi is a javascript (TypeScript) library for building web user interfaces.

It provides Virtual DOM API for DOM manipulations, UI Components and Scheduler tightly integrated with UI Components.

Kivi API is designed specifically to provide fast bootstrap time (cold start) and fast hot updates, good debugging and profiling experience (preserving stack traces), good minification by advanced javascript optimizing compilers.

Kivi JSFiddle

Example

import {ComponentDescriptor, injectComponent} from "kivi";

const Main = new ComponentDescriptor()
  .update((c, props) => {
     c.sync(c.createVRoot().child(`Hello ${props.name}`));
  });

injectComponent(Main, document.body, {name: "World"});

Documentation

Examples

Performance

Kivi has one of the fastest Virtual DOM implementations, it was designed from the ground up with high performance in mind.

Benchmarks:

1.0.0-rc2

8 years ago

1.0.0-rc1

8 years ago

1.0.0-rc0

8 years ago

0.11.0

8 years ago

0.11.0-alpha.3

8 years ago

0.11.0-alpha.2

8 years ago

0.11.0-alpha.1

8 years ago

0.10.0

8 years ago

0.9.0

8 years ago

0.7.1

8 years ago

0.7.0

8 years ago

0.5.0

9 years ago

0.4.0

9 years ago

0.0.1

9 years ago