1. ホーム
  2. javascript

[解決済み] インストールされているすべてのnode.jsモジュールの一覧を表示する

2022-05-12 01:09:01

質問

現在作成中のnode.jsスクリプトで、(npmを使ってインストールした)すべてのnode.jsモジュールをコマンドラインに出力したいのです。どうすればよいでしょうか。

console.log(__filename);

//now I want to print all installed modules to the command line. How can I do this?

解決方法は?

使用方法 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' }