zorium

Zorium, The CoffeeScript Web Framework. Zorium offers a full virtual-dom experience, similar to react, without the need for jsx. For more documentation see http://zorium.org

Usage no npm install needed!

<script type="module">
  import zorium from 'https://cdn.skypack.dev/zorium';
</script>

README

Zorium

Zorium - The CoffeeScript Web Framework

zorium.org

(╯°□°)╯︵ ┻━┻ v2.0.0

Features

Example

z = require 'zorium'

class Icon
  render: ({children}) ->
    z '.icon', children

class AppComponent
  constructor: ->
    @state = z.state
      name: 'Zorium'

  render: =>
    {name} = @state.getValue()

    z '.zorium',
      z 'p.text',
        z Icon, 'fireworks'
        "The Future -#{name}"

z.render new AppComponent(), document.body

Documentation

zorium.org

Installation

yarn add zorium

Contribute

yarn install
yarn test

Changelog

  • 1.x -> 2
    • [breaking] deprecate z.ev()
    • [breaking] deprecate attributes property for manually specifying attributes
    • [breaking] deprecate z.router
    • [breaking] upgrade to RxJS v5
    • [breaking] remove requestAnimationFrame and Promise polyfill
    • add support for rendering static classes as components
    • migrate backend from virtual-dom to dio.js