bigint-crypto-utils/node_modules/builtin-modules
juanelas c29b520108 JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
..
builtin-modules.json JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
index.d.ts JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
index.js JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
license JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
package.json JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
readme.md JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
static.d.ts JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
static.js JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02: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 builtin-modules

Usage

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

console.log(builtinModules);
//=> ['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