1. builtin-modules
A static list of the Node.js builtin modules from the latest Node.js version
builtin-modules
Package: builtin-modules
Created by: sindresorhus
Last modified: Tue, 30 Apr 2024 09:35:43 GMT
Version: 4.0.0
License: MIT
Downloads: 55,002,937
Repository: https://github.com/sindresorhus/builtin-modules

Install

npm install builtin-modules
yarn add builtin-modules

builtin-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.

Install

 npm install builtin-modules

Usage

 import builtinModules from 'builtin-modules';

console.log(builtinModules);
//=> ['assert', 'buffer', …]

Tip

To get a list from the current Node.js version, use the built-in API:

 import {builtinModules} from 'node:module';

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin