I am searching for the javascript template engine which ships with the precompilation script + watcher. How would I see it:

  1. You write the files as the typical html layouts and store in let's say the files of the .mustache type
  2. You run a watcher in the console, which watches the changes in the files and compiles them to .js files where the template is treated like a function, which performs the string concatenation and embeds the variables' values.
  3. This files are the used in the application.

This mechanism would solve a cross-domain issue in loading files of the non-js type, as well that it would be easy to merge them into one file for the performance reasons.

From the research I've made only the handlebars.js is promising to ship this feature in future. Would be happy to know if anyone else has implemented this?

link|improve this question

69% accept rate
feedback

1 Answer

https://github.com/visionmedia/jade this takes about no time to learn and does everything you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.