Files
node/lib/internal
Joyee Cheung ea2004a2ac module: allow omitting context in synchronous next hooks
This aligns the behavior of synchronous hooks with asynchronous
hooks by allowing omission of the context parameter in the
invocation of next hooks. The contexts are merged along the
chain.

PR-URL: https://github.com/nodejs/node/pull/57056
Fixes: https://github.com/nodejs/node/issues/57030
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2025-02-18 15:28:59 +00:00
..
2024-09-24 19:48:15 +00:00
2024-09-25 14:35:18 +00:00
2025-02-11 13:32:26 +00:00
2024-09-09 17:24:10 +02:00
2024-10-09 06:42:16 +00:00
2024-10-09 06:42:16 +00:00
2025-02-08 12:43:53 +00:00
2024-09-24 19:48:15 +00:00
2024-12-04 09:29:30 -08:00
2024-09-24 22:26:59 +02:00
2025-02-01 02:13:57 +00:00

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.