José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | hace 4 años | |
---|---|---|
.. | ||
builtin-modules.json | hace 4 años | |
index.js | hace 4 años | |
license | hace 4 años | |
package.json | hace 4 años | |
readme.md | hace 4 años | |
static.js | hace 4 años |
List of the Node.js builtin modules
The list is just a JSON file and can be used wherever.
$ npm install --save builtin-modules
var builtinModules = require('builtin-modules');
console.log(builinModules);
//=> ['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');
MIT © Sindre Sorhus