dustjs icon indicating copy to clipboard operation
dustjs copied to clipboard

Asynchronous Javascript templating for the browser and server

Results 83 dustjs issues
Sort by recently updated
recently updated
newest added

I don't want to submit a PR without some feedback about this first. Essentially, I'd like to add a handful of very useful $ properties. Currently, we have `$idx` and...

If my application has multiple Dust consumers, which are independent of each other and want to have different onLoad implementations, there is no good way to satisfy that. Because partial...

Tracking issue for Dust@3 - [ ] Remove the .join() "optimization" - [ ] Flip the default whitespace flag to not strip - [ ] ES6 modules for compiler and...

Originally submitted as akdubya/dustjs#12: > When the parser encounters a syntax error, it currently throws a SyntaxError exception instead of bubbling it up to the render callback like I'd expect....

Hi, I've found an performance issue in the current 2.7 branch and would fix that. I also found out that the code in master is already restructured and may not...

@jimmyhchan talked about this last year and I think it finally clicked for me. `dust.render` returns undefined right now and uses a callback. Jimmy talked about "streaming into templates" last...

When upgraded from 2.5 to 2.7 dustjs is supposed to support AMD without shim or other wrappers. When I load the script dynamically it works fine. When I build a...

How about creating a mini version of dust-core that does not have the stream functionality and loadSource. It benefits use cases where we do not need any loadSource, since all...

Dust takes for granted that the objects passed as models are plain native objects, i.e. Object, Array, String, Number etc. In some applications, the model is represented by custom objects...

feature

While playing around with the filters on http://www.dustjs.com/docs/syntax/ under "{reference}" section, I noticed that if I change the value of "markup" to ``, the alert box pops up, and none...