wallet-core/node_modules/nyc/node_modules/builtin-modules
2017-12-10 21:51:33 +01:00
..
builtin-modules.json add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
index.js add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
license add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
package.json upgrade dependencies 2017-12-10 21:51:33 +01:00
readme.md add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
static.js add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00

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