zodiac

0.1.17 • Public • Published

Zodiac

Reactive Rendering Library


Zodiac is a reactive rendering library. It solves some of the same problems as tools like React, Elm, CycleJS, Riot, Polymer, Angular, Ember etc. It is very modular and minimal, while still being powerful, efficient and fun to use.

Let's see it in action:

 
import {
  $, mount, loop,
  dom, h1, p, button, div,
} = from "zodiac";
 
function Button({text, $click}) {
  return button(
    { $click, type: "button" },
    text
  );
}
 
function Counter(counters, counter) {
  return div({style: "margin: 1em"},
    Button({ 
      $click: counter.inc,
      text: counter.get
    }),
    Button({ 
      $click: () => counters.drop(counter),
      text: "Delete"
    })
  );
}
 
function App() {
  const counters = $([]);
  return dom(
    h1(counters.length, " counters"),
    loop(counters.get, (v) => Counter(counters, v)),
    Button({
      text: "More Counters!!!",
      $click: () => counters.push($(0))
    })
  );
}
 
mount(document.body, App());
 

Very simple. What about more advanced stuff? Just check out these examples:

If you want to run these and try things out, just clone this repo and npm run dev.

build status npm version

Concepts

Reactivity

Zodiac uses Meteor Tracker for its reactivity model. We alter the API a little bit, but the functionality is the same. Therefore, you should read the Tracker documentation to understand how reactivity works in Zodiac.

Reactive variables

In Zodiac, $ is just a shortcut to create a new reactive variable, similar to ReactiveVar in Meteor.

TODO:

  • Explain reactive variable API
  • Write something about state trees with reactive joints and values.

Reactive templates

All of the HTML views in a Zodiac app are described using plain javascript.

TODO: examples and API

Standard architecture

There is a suggested standard architecture for larger zodiac apps, which you can see in some of the examples.

This architecture provides clear separation between central state (store), actions & getters (model), and templates (views / components). In this respect it is inspired by Redux and Elm, but it will let you do more with less code, and do more in general, including shooting yourself in the foot.

Reactive router

TODO

What about jQuery or other libs?

Zodiac will hopefully replace the need for libraries like jQuery for most applications, but you can still use it if you want. Just keep track of $, and Zodiac should work fine with most libraries.

Benefits over React

  • Faster renderer(? -- should be close to optimal, but not tested yet!)
  • About 20k minified (without babel polyfill for older browsers)
  • Much less boilerplate!
  • Components don't have to be wrapped in a tag
  • Iterators don't need keys
  • No DOM noise. No id's, classes or superfluous tags added unless you add them yourself.
  • Easier to learn
  • Etc, etc..

Zodiac is still very alpha though, and has not been production tested.

So, how does Zodiac work?

First of all, there is no DOM-diffing. Instead, the render call generates a template instantiation tree, which directly hooks reactive changes into DOM operations on their corresponding nodes, while at the same time keeping track of the correct DOM flow position of each node. The core implementation is only about 600 lines of JavaScript, so feel free to read it. :)

Basically there are two different tree structures at work; the template definition tree, and one or more template instantiation trees. The definition tree defines the appearance and behaviour of a template, while the instantiation tree maintains the current state of a definition tree being rendered. Each instantiation node has a corresponding definition node in the definition tree. Instantiation trees can have different structure than their definition trees due to reactive loops and conditionals.

Browser support

TODO! Also, Zodiac needs babel-polyfill on some browsers (looking at you, IE). See examples.

Development

Zodiac is very alpha for now, so a lot happens in master. The tests will define the API as it matures towards v1.

npm update installs dependencies.

npm run dev starts a local dev playground with auto-reloading.

npm karma boots up Karma so you can see test results.

Package Sidebar

Install

npm i zodiac

Weekly Downloads

1

Version

0.1.17

License

MIT

Last publish

Collaborators

  • josteinbe