How to use html as the template with Node

不是很喜欢jade,相对来说还是对html比较亲近

node里想用普通的html做页面。可以选择ejs,然后让后缀变成html

安装ejs

app.engine('html', require('ejs').renderFile);
app.set('view engine', 'html');

当然要干掉设置jade那行就行了,然后去index.jade,改成html就好了。