打印所有已安装的 node.js 模块的列表
在我正在处理的 node.js 脚本中,我想将所有 node.js 模块(使用 npm 安装)打印到命令行.我该怎么做?
In a node.js script that I'm working on, I want to print all node.js modules (installed using npm) to the command line. How can I do this?
console.log(__filename);
//now I want to print all installed modules to the command line. How can I do this?
推荐答案
使用 npm ls (甚至还有json输出)
Use npm ls (there is even json output)
来自脚本:
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' }
相关文章