在我正在使用的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.js null { name: 'x11', version: '0.0.11' }