Bu basit değişikliği tohumdan denedim ve karşılık gelen .html dosyalarını (örneğin, index.html) oluşturdum.
//app.set('view engine', 'jade');
app.set('view engine', 'html');
ve bu dosya aynı kaldı:
exports.index = function(req, res){
res.render('index');
};
ama koşarken anlıyorum
500 Hatası: 'html' modülü bulunamıyor
"Ejs" kullanmak için tek seçeneğim mi? Niyetim, AngularJS ile birlikte düz HTML kullanmaktı.