-
Mustache is a template engine, used in various frameworks. It is “logic less”, it supports if statemets, but it does not have many logical operations. Handlebar is an extension of Mustache with more capabilities. Read variables: {{name}} With handlebar, try to read a file: {{read "/etc/passwd"}} Or try to list a directory: {{#each (readdir "/etc")}} {{this}}{{/each}}