Error: Cannot find module 'ejs'

后端 未结 29 2088
南方客
南方客 2020-12-13 05:33

Here is my complete error:

Error: Cannot find module \'ejs\'
    at Function._resolveFilename (module.js:317:11)
    at Function._load (module.js:262:25)
            


        
29条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-13 05:54

    I think ejs template engine is not properly installed on your machine. You just install the template engine using npm

    npm install ejs --save
    

    then include the following code in app.js

    app.set('view engine', 'ejs')
    

提交回复
热议问题