--- lang: ja-jp breaks: true --- # Node.js のモジュールを表示 2021-05-13 ## Node.jsによって検索されるモジュールのパスを取得。 ```shell= $ node -e "console.log(module.paths);" ``` ## インストールせずに使用できるビルトインモジュールの一覧を取得 ```shell= $ node -e "console.log(require('module').builtinModules);" ``` ###### tags: `Node.js`