使用Express + node.js进行开发时,可以使用许多模板引擎。
但是,现在node.js 4.2.2固有地支持ES6-Template-Strings:
https://developers.google.com/web/updates/2015/01/ES6-Template-Strings?hl=en#multiline-strings
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings
http://www.ecma-international.org/ecma-262/6.0/#sec-template-literal-lexical-components
鉴于对模板字符串的这种固有支持,仍然使用像ejs这样的模板引擎有什么好处?当前的模板引擎是否使用ES6-Template-Strings?是否有任何性能测试将Express Template Engines与直接的ES6-Template-Strings进行比较?