peach a19a732be8 commit message | 2 yıl önce | |
---|---|---|
.. | ||
builtin-modules.json | 2 yıl önce | |
index.d.ts | 2 yıl önce | |
index.js | 2 yıl önce | |
license | 2 yıl önce | |
package.json | 2 yıl önce | |
readme.md | 2 yıl önce | |
static.d.ts | 2 yıl önce | |
static.js | 2 yıl önce |
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');