Mohammad Asif cf937194cb Removed un-waned things 1. | 5 月之前 | |
---|---|---|
.. | ||
builtin-modules.json | 5 月之前 | |
index.d.ts | 5 月之前 | |
index.js | 5 月之前 | |
license | 5 月之前 | |
package.json | 5 月之前 | |
readme.md | 5 月之前 | |
static.d.ts | 5 月之前 | |
static.js | 5 月之前 |
List of the Node.js builtin modules
The list is just a JSON file and can be used anywhere.
$ npm install builtin-modules
const builtinModules = require('builtin-modules');
console.log(builtinModules);
//=> ['assert', 'buffer', ...]
Returns an array of builtin modules fetched from the running Node.js version.
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');