打印所有已安装节点.js模块的列表
2022-08-30 03:06:59
在我正在处理的节点.js脚本中,我想将所有node.js模块(使用npm安装)打印到命令行。我该怎么做?
console.log(__filename);
//now I want to print all installed modules to the command line. How can I do this?
在我正在处理的节点.js脚本中,我想将所有node.js模块(使用npm安装)打印到命令行。我该怎么做?
console.log(__filename);
//now I want to print all installed modules to the command line. How can I do this?
如果您只对没有完整 TREE 的全局安装的软件包感兴趣,那么:
npm -g ls --depth=0
或本地(省略 -g):
npm ls --depth=0
使用npm ls(甚至有json输出)
从脚本中:
测试.js:
function npmls(cb) {
require('child_process').exec('npm ls --json', function(err, stdout, stderr) {
if (err) return cb(err)
cb(null, JSON.parse(stdout));
});
}
npmls(console.log);
跑:
> node test.js
null { name: 'x11', version: '0.0.11' }