Auto – Iteration

Take a node from the HTML template.
Add a CLASS attribute with the same name as a JSON array [ ... ] or a JSON object { ... }

<ul><li class="animals name"></li></ul>
var data = {animals:[
    {name:'bird'},
    {name:'cat'},
    {name:'dog'},
    {name:'mouse'}
  ]
};

And the result is:

<ul>
  <li class="animals name">bird</li>
  <li class="animals name">cat</li>
  <li class="animals name">dog</li>
  <li class="animals name">mouse</li>
</ul>

For an array(ordered list of values), PURE will loop on each item.
And for an object(collection of name/value pairs), PURE will loop on each property.

Here is an example: