In my nodejs app I need to render html files. The view engine is currently set to jade but I am not using this format.
I need it set so that i can render the relevant html page.
Cheers
You don't need a view engine to serve HTML. Instead, just use the static middleware:
app.use(express.static(__dirname + '/public'));