一尘不染

打印所有已安装的node.js模块的列表

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?

阅读 376

收藏
2020-07-07

共1个答案

一尘不染

使用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' }
2020-07-07