ez-indexation / app / node_modules / builtin-modules /
@kieffer kieffer authored on 7 Mar 2017
..
builtin-modules.json v0.0.0 7 years ago
index.js v0.0.0 7 years ago
license v0.0.0 7 years ago
package.json v0.0.0 7 years ago
readme.md v0.0.0 7 years ago
static.js v0.0.0 7 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