npm列表如何知道哪些是直接依赖?

时间:2016-12-17 09:33:09

标签: node.js npm npm-install

在输入以下三个命令后直接进入新版本:

npm install underscore
npm install lodash
npm install express

我得到一个包含许多包的node_modules目录:

$ ls node_modules

accepts              cookie-signature  encodeurl     forwarded    lodash             mime-db      parseurl        send            underscore
array-flatten        debug             escape-html   fresh        media-typer        mime-types   path-to-regexp  serve-static    unpipe
content-disposition  depd              etag          http-errors  merge-descriptors  ms           proxy-addr      setprototypeof  utils-merge
content-type         destroy           express       inherits     methods            negotiator   qs              statuses        vary
cookie               ee-first          finalhandler  ipaddr.js    mime               on-finished  range-parser    type-is

使用npm list时,我可以得到树状结构:

$ npm list
/tmp/play/npm
├─┬ express@4.14.0
│ ├─┬ accepts@1.3.3
│ │ ├─┬ mime-types@2.1.13
│ │ │ └── mime-db@1.25.0
│ │ └── negotiator@0.6.1
│ ├── array-flatten@1.1.1
│ ├── content-disposition@0.5.1
│ ├── content-type@1.0.2
│ ├── cookie@0.3.1
│ ├── cookie-signature@1.0.6
│ ├─┬ debug@2.2.0
│ │ └── ms@0.7.1
│ ├── depd@1.1.0
│ ├── encodeurl@1.0.1
│ ├── escape-html@1.0.3
│ ├── etag@1.7.0
│ ├─┬ finalhandler@0.5.0
│ │ ├── statuses@1.3.1
│ │ └── unpipe@1.0.0
│ ├── fresh@0.3.0
│ ├── merge-descriptors@1.0.1
│ ├── methods@1.1.2
│ ├─┬ on-finished@2.3.0
│ │ └── ee-first@1.1.1
│ ├── parseurl@1.3.1
│ ├── path-to-regexp@0.1.7
│ ├─┬ proxy-addr@1.1.2
│ │ ├── forwarded@0.1.0
│ │ └── ipaddr.js@1.1.1
│ ├── qs@6.2.0
│ ├── range-parser@1.2.0
│ ├─┬ send@0.14.1
│ │ ├── destroy@1.0.4
│ │ ├─┬ http-errors@1.5.1
│ │ │ ├── inherits@2.0.3
│ │ │ └── setprototypeof@1.0.2
│ │ └── mime@1.3.4
│ ├── serve-static@1.11.1
│ ├─┬ type-is@1.6.14
│ │ └── media-typer@0.3.0
│ ├── utils-merge@1.0.0
│ └── vary@1.1.0
├── lodash@4.17.2
└── underscore@1.8.3

我的问题是:来自所有这些依赖项,npm list如何知道哪些是我的直接依赖项,例如undersocrelodashexpress?< /强>

注意:我没有package.json个文件。

3 个答案:

答案 0 :(得分:1)

它根据模块的依赖关系构建列表。模块的依赖关系在package.json字段中每个模块的dependencies中指定。安装模块npm时,会向模块的package.json添加一些其他字段,其中一个是字段_requiredBy,以便将依赖关系链接存储到另一个方向。如果您运行npm list命令,它会遍历所有模块并读取每个模块的_requiredBy中的package.json字段。

如果您直接安装模块而不将其保存到package.jsonnpm会将#USER添加到_requiredBy字段,以表示您手动安装了该模块,而不是npm list只是其他模块的依赖。然后me/live_videos也会在树的根中显示该模块。

答案 1 :(得分:0)

npm list命令将以树形结构打印到stdout所安装的软件包的所有版本及其依赖项。

所以你只安装了三个包

npm install underscore
npm install lodash
npm install express

所有其他包都是express

的依赖项

答案 2 :(得分:0)

您可以使用以下命令:

//