odin-default-js-exercises/node_modules/builtin-modules
Cody Loyd 834d78b8b2 remove timer and simon 2017-12-15 12:56:14 -06:00
..
builtin-modules.json remove timer and simon 2017-12-15 12:56:14 -06:00
index.js remove timer and simon 2017-12-15 12:56:14 -06:00
license remove timer and simon 2017-12-15 12:56:14 -06:00
package.json remove timer and simon 2017-12-15 12:56:14 -06:00
readme.md remove timer and simon 2017-12-15 12:56:14 -06:00
static.js remove timer and simon 2017-12-15 12:56:14 -06:00

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