JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q41473F
  • License MIT

Javascript (TypeScript) library for building web user interfaces.

Package Exports

  • kivi

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (kivi) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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: