npm - 如何告诉安装什么

时间:2015-01-15 20:08:46

标签: node.js git

我只是想了解项目本地安装的内容以及全球安装的内容:

$ npm whats-installed-locally
$ npm whats-installed-globally
$ npm whats-dependencies-between-local-global-repos

什么是正确的命令行序列?

此外,有没有办法确定两个存储库之间哪些依赖关系被忽视?

1 个答案:

答案 0 :(得分:1)

列出本地安装的npm包:

npm list

列出全局安装的npm包:

npm list -g