# builtin-modules

> A static list of the Node.js builtin modules from the latest Node.js version

Latest version **5.4.0** (published 2026-09-17) · MIT license · 0 weekly downloads

> **Better alternative:** See documentation for alternatives (https://github.com/AikidoSec/module-replacements/blob/main/docs/builtin-modules)

## Install

```sh
npm install builtin-modules
pnpm add builtin-modules
yarn add builtin-modules
bun add builtin-modules
```

## Health

**Score 70/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high maintenance score; high quality score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 5.4.0 |
| Published | 2026-09-17 |
| First published | 2015-05-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM |
| Node | >=18.20 |
| Dependencies | 0 |
| Unpacked size | 4.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 130 |
| Author | Sindre Sorhus |
| Maintainers | sindresorhus |
| Keywords | builtin, built-in, builtins, node, modules, core, bundled, list, array, names |

## Links

- npm: https://www.npmjs.com/package/builtin-modules
- Repository: https://github.com/sindresorhus/builtin-modules
- Homepage: https://github.com/sindresorhus/builtin-modules#readme
- Issues: https://github.com/sindresorhus/builtin-modules/issues
- Funding: https://github.com/sponsors/sindresorhus
- npm.io page: https://npm.io/package/builtin-modules

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 5.4.0 (latest) — 2026-09-17
- 5.3.0 — 2026-06-28
- 5.2.0 — 2026-05-10
- 5.1.0 — 2026-04-12
- 5.0.0 — 2025-02-27
- 4.0.0 — 2024-04-30
- 3.3.0 — 2022-05-12
- 3.2.0 — 2020-12-22
- 3.1.0 — 2019-04-07
- 3.0.0 — 2018-05-27
- 2.0.0 — 2017-11-15
- 1.1.1 — 2016-01-01
- 1.1.0 — 2015-09-01
- 1.0.1 — 2015-05-04
- 1.0.0 — 2015-05-04

## README

# builtin-modules

> A static list of the Node.js builtin modules from the latest Node.js version

The list is just a [JSON file](builtin-modules.json) and can be used anywhere.

## Install

```sh
npm install builtin-modules
```

## Usage

```js
import builtinModules from 'builtin-modules';

console.log(builtinModules);
//=> ['node:assert', 'assert', 'node:buffer', 'buffer', …]
```

## Tip

To get a list from the current Node.js version, use the built-in API:

```js
import {builtinModules} from 'node:module';
```

## Related

- [is-builtin-module](https://github.com/sindresorhus/is-builtin-module) - Check if a string matches the name of a Node.js builtin module

---
_Source: https://npm.io/package/builtin-modules · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
