I wonder if I can use several JSONs when I'm rendering a page with dust.js.
For example, I am on the client side. I download my JSONs (JSON1 and JSON2) and my dust template (dustTemplate). I compile and load my template. After I would render my page with the 2 JSONs.
For now I do :dust.render("template" , JSON, function(err, out) {...});
But it uses one JSON, is there a way to use 2 or more JSONs ?
Thank you