NPM is installing lots of libraries

前端 未结 2 944
情书的邮戳
情书的邮戳 2021-01-28 11:33

When I use npm install base from package.json file it installs 337 libraries :/ Here is my package file

{
  \"name\": \"system_glowna\         


        
2条回答
  •  攒了一身酷
    2021-01-28 12:00

    You've told it to install a fairly large number of libraries. Each of those libraries has its own dependencies, which are necessary for that library to run. You can't limit or prevent that unless you just don't want to use the library in question.

    Note that installing lots of libraries isn't, by itself, a problem.

提交回复
热议问题