我只是想了解项目本地安装的内容以及全球安装的内容:
$ npm whats-installed-locally
$ npm whats-installed-globally
$ npm whats-dependencies-between-local-global-repos
什么是正确的命令行序列?
此外,有没有办法确定两个存储库之间哪些依赖关系被忽视?
答案 0 :(得分:1)
列出本地安装的npm包:
npm list
列出全局安装的npm包:
npm list -g