I'm a little new to Node and javascript frameworks, so please bear with me:
I was looking for a suitable combination of front-end interface (MVC) frameworks to work with Node, and currently I decided to use SailsJS / EmberJS to create a template that I can play with and possibly use for future projects.
SailsJs (from the finished application) uses EJS to compile background views. EmberJs (the default starter kit) uses rudders to compile front-end views.
I want to preserve the template language (EJS), as with one exception to the SailsJS linker. He is currently compiling public templates like "jst.js" which are not compatible with descriptors. I would like to change this so that "jst.js" will contain compiled templates using rudders, so they will be served by the front interface (ember app), which will be ready for use.
I assume that this will require an additional Node library. How do I configure Gruntfile.js to use this library so that the linker can output compiled templates to a shared directory?
source
share