kiruthiga 55473b7e7c initial push 5 days ago
..
builtin-modules.json 55473b7e7c initial push 5 days ago
index.js 55473b7e7c initial push 5 days ago
license 55473b7e7c initial push 5 days ago
package.json 55473b7e7c initial push 5 days ago
readme.md 55473b7e7c initial push 5 days ago
static.js 55473b7e7c initial push 5 days 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');

Related

License

MIT © Sindre Sorhus