Solution 1 :

I missed a bracket. It must be

{{{body}}}

Problem :

app.js

var hbs = exphbs.create()
app.engine('handlebars', hbs.engine)
app.set('view engine', 'handlebars')

defaultController.js

index: (req, res) => {
    res.render('default/index')
}

index.handlebars (under views/default)

<h1>Index</h1>

Comments

Comment posted by slebetman

Why do you think it’s rendering plain text? Can you show us the curl/wget/postman output?

Comment posted by link

link

Comment posted by C.Gochev

Have you tried

Comment posted by edit

Your answer could be improved with additional supporting information. Please

Comment posted by reputation

This does not provide an answer to the question. Once you have sufficient

By