
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
builtin-modules
Advanced tools
A static list of the Node.js builtin modules from the latest Node.js version
The builtin-modules package provides a list of the modules that come pre-packaged with Node.js. These are modules that you can require in your code without needing to install them separately, as they are built into the Node.js runtime. This package is useful for developers who want to ensure they are using only core modules or need to check if a module name corresponds to a built-in module.
List of all builtin modules
This feature allows you to retrieve an array of all the builtin module names in Node.js. The code sample shows how to require the package and log the list of module names to the console.
const builtinModules = require('builtin-modules');
console.log(builtinModules);
List of builtin modules as of a specific Node.js version
This feature provides a list of builtin modules for a specific version of Node.js. The 'static' import gives you a list that corresponds to a particular Node.js release, which is useful when working with environments that may not be up-to-date with the latest Node.js version.
const builtinModules = require('builtin-modules/static');
console.log(builtinModules);
The 'is-core-module' package is similar to 'builtin-modules' in that it allows you to check if a given module name is a Node.js core module. However, instead of providing a list of modules, it offers a function that returns a boolean indicating whether the module is built-in or not. This can be more convenient for certain use cases where you need to check modules on a case-by-case basis.
While 'resolve' is not exclusively focused on built-in modules, it is a package that can resolve the path of a module, including core Node.js modules. It can be used to find the absolute path of a module, which includes checking if a module is a built-in module. This package offers more general module resolution capabilities compared to 'builtin-modules', which is specifically tailored to list Node.js built-in modules.
A static list of the Node.js builtin modules from the latest Node.js version
The list is just a JSON file and can be used anywhere.
npm install builtin-modules
import builtinModules from 'builtin-modules';
console.log(builtinModules);
//=> ['node:assert', 'assert', 'node:buffer', 'buffer', …]
To get a list from the current Node.js version, use the built-in API:
import {builtinModules} from 'node:module';
FAQs
A static list of the Node.js builtin modules from the latest Node.js version
We found that builtin-modules demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.