npm install --save ejs pug express-handlebars

EJS

<p><%= name %></p>

Use normal HTML and plain JavaScript in your templates

Pug(jade)

p #{name}

Use minimal HTML and custom template language

Handlebars

<p>({ name })</p>

Use nrmal HTML and custom template language