I decide to use template engine (Like JADE/PUG) for using via Angluar 2.0 for clarity and cleaning the code for developing a big single page application (SPA) and just I want to reach a very good performance application.
My Combination is : HTML5+CSS (SASS)+ ANGULAR 2 + Bootstrap
My question is that, is it reasonable to use template engine for clarity and cleaning the code for developing a big single page application (SPA) along with Angular 2.0? I read about JADE but now in a doubt.
JADE is not suitable for a SPA.
JADE is a server side view technology, which renders HTML with the required data, that is suitable for a traditional non-SPA application.
In SPA, you just get only data (not HTML every time) from the server.