kale icon indicating copy to clipboard operation
kale copied to clipboard

A (healthy) templating engine for your JSON data.

Results 3 kale issues
Sort by recently updated
recently updated
newest added

I tried installing `npm install --save kale` but i keep getting 0.2.x I tried updating but it can't grab 0.7 from npm. Right now I'm using the master branch GH...

Hello, I am in situation where based on some condition I need to include some fields in kale view. Suppose an example. ``` // person.kale { name: firstName + '...

Is there any way to handle async data in custom actions? ``` js actions.addAction('asyncAction', function(object, param){ return AsyncAction(object, param).then(function(result){ return result; }); }); ```