module.builtinModules


Node.js 提供的所有模块的名称列表。 可用于验证模块是否由第三方维护。

此上下文中的 module模块封装器提供的对象不同。 要访问它,需要 Module 模块:

// module.mjs
// 在 ECMAScript 模块中
import { builtinModules as builtin } from 'module';// module.cjs
// 在 CommonJS 模块中
const builtin = require('module').builtinModules;

A list of the names of all modules provided by Node.js. Can be used to verify if a module is maintained by a third party or not.

module in this context isn't the same object that's provided by the module wrapper. To access it, require the Module module:

// module.mjs
// In an ECMAScript module
import { builtinModules as builtin } from 'module';// module.cjs
// In a CommonJS module
const builtin = require('module').builtinModules;