deno/ext/node/polyfills/internal_binding
Divy Srivastava 5039ce8e32
fix(ext/node): fix Buffer.inspect compatiblity (#29617)
Enables `parallel/test-buffer-inspect.js`

Towards #29589
2025-06-05 14:44:06 +05:30
..
_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 fix(ext/node): Buffer.fill compatibility fixes (#29525) 2025-06-05 13:29:44 +05:30
cares_wrap.ts fix(ext/node): improve getaddrinfo compatibility (#29501) 2025-06-02 11:34:36 +09: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 fix(ext/node): stub getFipsCrypto to false (#29485) 2025-05-30 15:15:03 +09: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 fix(ext/node): improve getaddrinfo compatibility (#29501) 2025-06-02 11:34:36 +09:00
node_file.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
node_options.ts fix(ext/node): support DEP0005 deprecation warning (#29530) 2025-06-04 12:25:32 +09: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): fix Buffer.inspect compatiblity (#29617) 2025-06-05 14:44:06 +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.