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

时间:2023-03-16
本文介绍了打印所有已安装的 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' }

这篇关于打印所有已安装的 node.js 模块的列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:如何在 Bower 中注册本地 git 包? 下一篇:使用 Javascript/jQuery 从 HTML 元素中获取所有属性

相关文章