P
module.builtinModules
History
Added in: v9.3.0, v8.10.0, v6.13.0
v9.3.0, v8.10.0, v6.13.0
Introduced in: v12.20.0
v12.20.0
The list now also contains prefix-only modules.
v23.5.0
Type:
string[]A list of the names of all modules provided by Node.js.
import { builtinModules } from 'node:module'; console.log(builtinModules.filter((name) => name.startsWith('path'))); // Prints: [ 'path', 'path/posix', 'path/win32' ]
To test whether a module name corresponds to a builtin module, use
module.isBuiltin().