I am working through setting up a http server using node.js and engine. However, I keep running into issues that I have little information on how to resolve I would apprecia
instead of
app.get('/', (req, res) => res.render('Hellooooo'))
use
app.get('/', (req, res) => res.send('Hellooooo'))