What is an Embedded JS Template Engine?

shadowtime2000

shadowtime2000

Maintainer

Simply put, embedded JS template engines are template engines that allow you to write JS within delimiters of the template engine to control the data that is rendered.

Example

Take a look at this Eta template.

<% if (it.displayName) { %>
Name: <%= it.displayName %>
<% } %>

You can see how we are writing JS in the appropriate delimiters to control what data is rendered and how it is rendered.

That's really all an embedded JS template engine is, so see you next time!