dust2jsx

0.6.1 • Public • Published

dust2jsx

Create JSX code from Dust template

<header>
  {@Logo name="foo" shadow="true"/}
</header>
 
{?title}
  <h1 class="title">{title}</h1>
{/title}
 
{#images}
  <img src="{src}">
{/images}

➡️

<header>
  <Logo name="foo" shadow="true"/>
</header>
 
{title ?
  <h1 className="title">{title}</h1>
 : null}
 
{images.map(item =>
  <img src="{item.src}">
)}

Usage

const dust2jsx = require('dust2jsx');
 
dust2jsx('<input type="checkbox" {?checked}checked{/checked}/>');
// Outputs: <input type="checkbox" {checked ? 'checked' : ''}/>

Parameters

externals

(Boolean)

Outputs array of found referenced variables or Components. Optional. Default: false

dust2jsc('<header><Logo shadow="true"/></header><Foo bar />', { externals: true });
// Outputs: ['Logo', 'Foo']

Dependents (1)

Package Sidebar

Install

npm i dust2jsx

Weekly Downloads

1

Version

0.6.1

License

MIT

Unpacked Size

209 kB

Total Files

62

Last publish

Collaborators

  • miloss