node/lib/internal
James M Snell 8dbc6b210f
worker: make Worker async disposable
PR-URL: https://github.com/nodejs/node/pull/58385
Backport-PR-URL: https://github.com/nodejs/node/pull/58455
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
2025-07-28 11:07:43 +02:00
..
assert assert: remove dead code 2025-07-24 20:08:30 +02:00
async_local_storage
bootstrap
child_process
cluster
console
crypto crypto: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4 2025-07-21 16:22:26 +02:00
debugger
dns
events
fs src: fix internalModuleStat v8 fast path 2025-07-28 08:58:22 +02:00
http2 http2: add diagnostics channel 'http2.server.stream.close' 2025-07-24 20:08:21 +02:00
inspector inspector: add protocol methods retrieving sent/received data 2025-07-24 20:08:24 +02:00
legacy
main esm: implement import.meta.main 2025-07-28 08:46:16 +02:00
modules src: fix internalModuleStat v8 fast path 2025-07-28 08:58:22 +02:00
per_context lib,src: support DOMException ser-des 2025-07-27 20:28:14 +02:00
perf lib: rename `validateInternalField` into `validateThisInternalField` 2025-07-24 20:08:26 +02:00
process permission: propagate permission model flags on spawn 2025-07-27 20:28:14 +02:00
quic
readline
repl
source_map
streams
test
test_runner
tls
util util: inspect: do not crash on an Error stack pointing to itself 2025-07-24 20:08:23 +02:00
v8
vm lib: rename `validateInternalField` into `validateThisInternalField` 2025-07-24 20:08:26 +02:00
watch_mode
webstreams
worker lib,src: support DOMException ser-des 2025-07-27 20:28:14 +02:00
README.md
abort_controller.js
assert.js
async_context_frame.js
async_hooks.js
blob.js
blocklist.js
buffer.js
child_process.js
cli_table.js
constants.js
data_url.js url: add fileURLToPathBuffer API 2025-07-24 20:08:23 +02:00
dgram.js
encoding.js
error_serdes.js
errors.js lib: make `validateInternalField()` throw `ERR_INVALID_THIS` 2025-07-24 20:08:26 +02:00
event_target.js lib: rename `validateInternalField` into `validateThisInternalField` 2025-07-24 20:08:26 +02:00
file.js
fixed_queue.js
freelist.js
freeze_intrinsics.js
heap_utils.js v8: fix missing callback in heap utils destroy 2025-07-24 20:08:30 +02:00
histogram.js
http.js
inspector_async_hook.js
inspector_network_tracking.js
js_stream_socket.js
linkedlist.js
mime.js
navigator.js
net.js
options.js
priority_queue.js
promise_hooks.js
querystring.js
repl.js
socket_list.js
socketaddress.js
stream_base_commons.js
timers.js
trace_events_async_hooks.js
tty.js
url.js url: add fileURLToPathBuffer API 2025-07-24 20:08:23 +02:00
util.js crypto: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4 2025-07-21 16:22:26 +02:00
v8_prof_polyfill.js
v8_prof_processor.js
validators.js lib: rename `validateInternalField` into `validateThisInternalField` 2025-07-24 20:08:26 +02:00
vm.js
wasm_web_api.js
watchdog.js
webidl.js
webstorage.js
worker.js worker: make Worker async disposable 2025-07-28 11:07:43 +02:00

README.md

Internal Modules

The modules located in lib/internal directory are exclusively meant for internal usage within the Node.js core. They are not intended to be accessed via user modules require(). These modules may change at any point in time. Relying on these internal modules outside the core is not supported and can lead to unpredictable behavior.

In certain scenarios, accessing these internal modules for debugging or experimental purposes might be necessary. Node.js provides the --expose-internals flag to expose these modules to userland code. This flag only exists to assist Node.js maintainers with debugging internals. It is not meant for use outside the project.