<legend id='1nChY'><style id='1nChY'><dir id='1nChY'><q id='1nChY'></q></dir></style></legend>

    <i id='1nChY'><tr id='1nChY'><dt id='1nChY'><q id='1nChY'><span id='1nChY'><b id='1nChY'><form id='1nChY'><ins id='1nChY'></ins><ul id='1nChY'></ul><sub id='1nChY'></sub></form><legend id='1nChY'></legend><bdo id='1nChY'><pre id='1nChY'><center id='1nChY'></center></pre></bdo></b><th id='1nChY'></th></span></q></dt></tr></i><div id='1nChY'><tfoot id='1nChY'></tfoot><dl id='1nChY'><fieldset id='1nChY'></fieldset></dl></div>
    • <bdo id='1nChY'></bdo><ul id='1nChY'></ul>

      <tfoot id='1nChY'></tfoot>

        <small id='1nChY'></small><noframes id='1nChY'>

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

        时间:2023-09-08
        <tfoot id='drRrT'></tfoot>

        • <i id='drRrT'><tr id='drRrT'><dt id='drRrT'><q id='drRrT'><span id='drRrT'><b id='drRrT'><form id='drRrT'><ins id='drRrT'></ins><ul id='drRrT'></ul><sub id='drRrT'></sub></form><legend id='drRrT'></legend><bdo id='drRrT'><pre id='drRrT'><center id='drRrT'></center></pre></bdo></b><th id='drRrT'></th></span></q></dt></tr></i><div id='drRrT'><tfoot id='drRrT'></tfoot><dl id='drRrT'><fieldset id='drRrT'></fieldset></dl></div>
          <legend id='drRrT'><style id='drRrT'><dir id='drRrT'><q id='drRrT'></q></dir></style></legend>
                • <bdo id='drRrT'></bdo><ul id='drRrT'></ul>
                    <tbody id='drRrT'></tbody>

                  <small id='drRrT'></small><noframes id='drRrT'>

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

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

                  相关文章

                  最新文章

                  1. <i id='ZT4Vr'><tr id='ZT4Vr'><dt id='ZT4Vr'><q id='ZT4Vr'><span id='ZT4Vr'><b id='ZT4Vr'><form id='ZT4Vr'><ins id='ZT4Vr'></ins><ul id='ZT4Vr'></ul><sub id='ZT4Vr'></sub></form><legend id='ZT4Vr'></legend><bdo id='ZT4Vr'><pre id='ZT4Vr'><center id='ZT4Vr'></center></pre></bdo></b><th id='ZT4Vr'></th></span></q></dt></tr></i><div id='ZT4Vr'><tfoot id='ZT4Vr'></tfoot><dl id='ZT4Vr'><fieldset id='ZT4Vr'></fieldset></dl></div>

                    1. <small id='ZT4Vr'></small><noframes id='ZT4Vr'>

                      <legend id='ZT4Vr'><style id='ZT4Vr'><dir id='ZT4Vr'><q id='ZT4Vr'></q></dir></style></legend>
                    2. <tfoot id='ZT4Vr'></tfoot>

                        <bdo id='ZT4Vr'></bdo><ul id='ZT4Vr'></ul>