DEV Community

shadowtime2000
shadowtime2000

Posted on • Originally published at eta.js.org

What is an Embedded JS Template Engine?

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 %>
<% } %>
Enter fullscreen mode Exit fullscreen mode

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!

Top comments (0)