Error: Cannot find module html

前端 未结 5 652
情书的邮戳
情书的邮戳 2020-12-04 19:28

I have not used Node.js for a long time and never used express. When I started my application, it just returned :

Error: Cannot find module \'html\'
  at Fun         


        
5条回答
  •  死守一世寂寞
    2020-12-04 20:03

    Simple way is to use the EJS template engine for serving .html files. Put this line right next to your view engine setup:

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

提交回复
热议问题