Open your config / app.json, there are "viewing mechanisms". Uncomment it and add your own template module (you must first install it on npm). You can also change the express configuration to use Jade.
The following is an example configuration for using ejs as a viewer:
"view engines": {
"html": {
"module": "ejs",
"renderer": "__express"
}
},
"express": {
"view engine": "html"
}
Source .
source
share