0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 09:57:11 -05:00
deno/ext/node/polyfills/internal_binding
2023-12-19 15:05:49 +09:00
..
_libuv_winerror.ts
_listen.ts
_node.ts
_timingSafeEqual.ts
_utils.ts fix(ext/node): fix TypeError in Buffer.from with base64url encoding. (#20705) 2023-09-27 07:54:19 -06:00
ares.ts
async_wrap.ts
buffer.ts
cares_wrap.ts feat: support import attributes (#20342) 2023-09-07 09:09:16 -04:00
connection_wrap.ts
constants.ts
crypto.ts
handle_wrap.ts
mod.ts
node_file.ts
node_options.ts
pipe_wrap.ts
README.md
stream_wrap.ts refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
string_decoder.ts
symbols.ts
tcp_wrap.ts
types.ts fix(console): inspect for {Set,Map}Iterator and Weak{Set,Map} (#21554) 2023-12-19 15:05:49 +09:00
udp_wrap.ts refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
util.ts fix(console): inspect for {Set,Map}Iterator and Weak{Set,Map} (#21554) 2023-12-19 15:05:49 +09:00
uv.ts fix(ext/node): implement uv.errname (#20785) 2023-10-05 18:27:20 +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.