npm install is missing modules

前端 未结 6 1694
广开言路
广开言路 2021-02-04 01:53

Before I can run gulp in my project I need to run npm install. This works except on my computer, because I get the following error:

Err         


        
6条回答
  •  深忆病人
    2021-02-04 02:39

    Running npm install will install all dependencies that are specified in the package.json. Seems like you have quite a few dependencies that are not defined that way. Use npm install packageName --save and npm will add the package to your package.json.

提交回复
热议问题