打印所有已安装的 node.js 模块的列表 [英] Print a list of all installed node.js modules

查看:36
本文介绍了打印所有已安装的 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 模块的列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆