CVSS_3.0_GUI / node_modules / nwjs-builder-phoenix / node_modules / yargs / node_modules / read-pkg-up / node_modules / read-pkg / node_modules / normalize-package-data / node_modules / is-builtin-module / node_modules / builtin-modules /
root authored on 7 May 2019
..
index.js Initial commit 5 years ago
license Initial commit 5 years ago
package.json Initial commit 5 years ago
readme.md Initial commit 5 years ago
static.js Initial commit 5 years ago
readme.md

builtin-modules Build Status

List of the Node.js builtin modules

The list is just a JSON file and can be used wherever.

Install

$ npm install --save builtin-modules

Usage

var builtinModules = require('builtin-modules');

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

API

Returns an array of builtin modules fetched from the running Node.js version.

Static list

This module also comes bundled with a static array of builtin modules generated from the latest Node.js version. You can get it with require('builtin-modules/static');

License

MIT © Sindre Sorhus