2.0.1 • Published 4 years ago

@tram-one/rbel v2.0.1

Weekly downloads
2
License
BSD
Repository
-
Last release
4 years ago

rbel

Fork of rbel

use custom elements in tagged template literals

example

const domBuilder = require('hyperx')
const h = require('nanohtml');
const html = require('rbel')(domBuilder, h, {
    row: (attrs, children) => html`
        <div class="row">
           ${children}
        </div>`,
    column: (attrs, children) => html`
        <div class="col col-md-${attrs.md}">
           ${children}
        </div>`,
});

console.log(html`
<row>
    <column md="12">
        <span>1 ciao!</span>
    </column>
</row>`.outerHTML);

Values to use for domBuilder:

  • hyperx - hyperx
  • hyperz - hyperz

Values to use for h:

  • virtual-dom - vdom.h
  • react - React.createElement
  • bel - require('bel').createElement (only client side see #1)
  • belit - belit (both SSR and client)
  • hyperscript - hyperscript