JavaScript
Handlebars
클라인STR
2018. 11. 15. 20:36
Introducing Handlebars.js
Handlebars.js는 Mustache template 언어를 확장한 자바스크립트 템플릿 엔진이다.
Logic less template (View 와 Code를 분리)
Natural Template 기반이다.
Precompile 이용하면 렌더링 속도가 향상된다.
http://handlebarsjs.com/
Mustache에는 없는 if, unless, with, each 분기문을 지원한다.
Path 구조를 지원하며 Helper를 이용하여 커스텀 하게 사용할 수 있다.
Rendering HTML with Handlebars
Reference
Handlebars with dynamically loaded and cached template
Constructing HTML with templates
Write Templates Like A Node.js Pro: Handlebars Tutorial
handlebars - is it possible to access parent context in a partial?