Is it possible to create an express (node) application without the need for a template engine such as jade or ejs. I\'ve got a large final year project at university and i\'
The best option right now is to use ejs (engine) and configure it to accept and render html:
app.set('views', path.join(*__dirname*, 'views'))
app.set('view engine', 'ejs'); // template engine
app.engine('html', require('ejs').renderFile); // turn engine to use html
Note: All your views or templates have the .html
extension.