Error: Cannot find module 'ejs'

后端 未结 29 2064
南方客
南方客 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 06:14

    I installed both: express and ejs with the option --save:

    npm install ejs --save npm install express --save

    This way express and ejs are dependecies package.json file.

提交回复
热议问题