cloudworker-proxy
Version:
An api gateway for cloudflare workers
42 lines (21 loc) • 954 B
Markdown
> List of the Node.js builtin modules
The list is just a [JSON file](builtin-modules.json) and can be used wherever.
```
$ npm install builtin-modules
```
```js
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');`
- [is-builtin-module](https://github.com/sindresorhus/is-builtin-module) - Check if a string matches the name of a Node.js builtin module
MIT © [Sindre Sorhus](https://sindresorhus.com)