deno/ext/node/polyfills/internal_binding
Divy Srivastava 69eafe4814
fix(ext/node): prevent stdin double read (#29353)
Accidental debug code from
28cb8f7011
2025-05-17 17:17:39 +00:00
..
_libuv_winerror.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
_listen.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
_node.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
_timingSafeEqual.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
_utils.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
ares.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
async_wrap.ts refactor(ext/node): rewrite HandleWrap in Rust (#28765) 2025-04-10 17:20:25 +05:30
buffer.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
cares_wrap.ts fix(ext/node): handle "ttl" option in "dns" module (#27676) 2025-04-29 22:49:10 +00:00
connection_wrap.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
constants.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
crypto.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
handle_wrap.ts refactor(ext/node): rewrite HandleWrap in Rust (#28765) 2025-04-10 17:20:25 +05:30
http_parser.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
mod.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
node_file.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
node_options.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
pipe_wrap.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
README.md feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
stream_wrap.ts fix(ext/node): prevent stdin double read (#29353) 2025-05-17 17:17:39 +00:00
string_decoder.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
symbols.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
tcp_wrap.ts fix(ext/node): better dns.lookup compatibility (#27936) 2025-04-02 11:38:07 +09:00
types.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
udp_wrap.ts fix(ext/node): implement dgram setMulticastLoopback (#29241) 2025-05-12 08:53:15 +05:30
util.ts fix(ext/node): arrayBufferViewHasBuffer internal util (#28827) 2025-05-08 09:58:08 +05:30
uv.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00

Internal Bindings

The modules in this directory implement (simulate) C++ bindings implemented in the ./src/ directory of the Node.js repository.

These bindings are created in the Node.js source code by using NODE_MODULE_CONTEXT_AWARE_INTERNAL.

Please refer to https://github.com/nodejs/node/blob/master/src/README.md for further information.