elearning/Frontend-Learner/node_modules/is-builtin-module
2026-01-13 10:48:02 +07:00
..
index.d.ts Website Structure 2026-01-13 10:48:02 +07:00
index.js Website Structure 2026-01-13 10:48:02 +07:00
license Website Structure 2026-01-13 10:48:02 +07:00
package.json Website Structure 2026-01-13 10:48:02 +07:00
readme.md Website Structure 2026-01-13 10:48:02 +07:00

is-builtin-module

Check if a string matches the name of a Node.js builtin module

Note that this matches based a static list of modules from the latest Node.js version. If you want to check for a module in the current Node.js, use the core isBuiltin method.

Install

npm install is-builtin-module

Usage

import isBuiltinModule from 'is-builtin-module';

isBuiltinModule('fs');
//=> true

isBuiltinModule('fs/promises');
//=> true

isBuiltinModule('node:fs/promises');
//=> true

isBuiltinModule('unicorn');
//=> false
  • builtin-modules - A static list of the Node.js builtin modules from the latest Node.js version