打印所有已安装的node.js模块的列表
在我正在使用的node.js脚本中,我想将所有的node.js模块(使用npm安装)打印到命令行。我怎样才能做到这一点?
console.log(__filename);//now I want to print all installed modules to the command line. How can I do this?
回答:
使用npm ls(甚至还有json输出)
从脚本中:
test.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.jsnull { name: 'x11', version: '0.0.11' }
以上是 打印所有已安装的node.js模块的列表 的全部内容, 来源链接: utcz.com/qa/399430.html