JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 11340077
  • Score
    100M100P100Q209600F
  • License MIT

List of node.js builtin modules

Package Exports

  • builtins
  • builtins/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (builtins) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

builtins

CI

List of node.js builtin modules.

Usage

const builtins = require('builtins')

Get list of core modules for current Node.js version:

assert(builtins().includes('http'))

Get list of core modules for specific Node.js version:

assert(builtins({ version: '6.0.0' }).includes('http'))

Get list of core modules present in one or mode Node.js versions:

assert(builtins({ version: '*' }).includes('worker_threads'))

Add experimental modules to the list:

assert(builtins({ experimental: true }).includes('wasi'))

License

MIT