npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

zodiac

v0.1.17

Published

Reactive renderig library

Downloads

9

Readme

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.