prakal / dna.js

🧬 An uncomplicated user interface library for building data-driven semantic templates

Home Page:https://dnajs.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dna.js

logo

An uncomplicated user interface library for building data-driven semantic templates

License:MIT npm Quality Vulnerabilities Hits Build

dna.js is a lightweight easy-to-use UI library enabling developers to rapidly build maintainable JavaScript applications.

1. Bookstore Example

Designate templates with the dna-template class, and put the templates directly into the HTML of your web page.  Use the element's id to indicate the name of the template.  Enclose data fields in double tildes ~~.

a) HTML for book template

<h1>Featured Books</h1>
<div id=book class=dna-template>
   <h2>~~title~~</h2>
   Author: <cite>~~author~~</cite>
</div>

Then call the dna.clone() function to insert a copy of the template into the DOM.  The supplied JSON data object populates the fields of the template.

b) JavaScript call to add book node

dna.clone('book', { title: 'The DOM', author: 'Jan' });

The new clone element replaces the template.  The original template is detached from the DOM and kept for additional cloning.

c) Resulting HTML with clone

<h1>Featured Books</h1>
<div class=book>
   <h2>The DOM</h2>
   Author: <cite>Jan</cite>
</div>

Need to clone the template multiple times?  Simply pass an array of data objects into the dna.clone() function.

2. Additional Information


dna.js is open source under the MIT License.  The website and documentation are published under the CC BY-SA 4.0 license.

About

🧬 An uncomplicated user interface library for building data-driven semantic templates

https://dnajs.org

License:MIT License


Languages

Language:HTML 73.6%Language:JavaScript 21.1%Language:CSS 3.7%Language:Shell 1.4%Language:PHP 0.2%