1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/ext/node
Matt Mastracci 1297c9a8f3
chore(ext/node): use BufView natively in http2 (#21688)
Node HTTP/2 was using the default h2 `Bytes` datatype when we can be
making using of `BufView` like we do in `Deno.serve`.

`fetch` and `Deno.serverHttp` can't make use of `BufView` because they
are using `reqwest` which is stuck on hyper 0.x at this time.
2023-12-23 08:58:20 -07:00
..
benchmarks fix: implement child_process IPC (#21490) 2023-12-13 11:14:16 +01:00
ops chore(ext/node): use BufView natively in http2 (#21688) 2023-12-23 08:58:20 -07:00
polyfills fix(node): child_process kill cancel pending IPC reads (#21647) 2023-12-20 07:55:09 +05:30
analyze.rs fix(node): support resolving a package.json import to a builtin node module (#21576) 2023-12-14 15:09:05 +00:00
build.rs build: allow disabling snapshots for dev (#20048) 2023-08-06 01:47:15 +02:00
Cargo.toml chore: forward v1.39.1 commit to main (#21667) (#21671) 2023-12-21 18:43:52 +00:00
clippy.toml refactor(ext/fs): deno_fs::FileSystem - conditional Send + Sync (#18993) 2023-05-08 11:02:02 -04:00
errors.rs fix(node): support resolving a package.json import to a builtin node module (#21576) 2023-12-14 15:09:05 +00:00
global.rs fix(ext/node): include non-enumerable keys in Reflect.ownKeys(globalThis) (#21485) 2023-12-07 21:34:44 +05:30
lib.rs fix(node): child_process IPC on Windows (#21597) 2023-12-19 13:37:22 +01:00
package_json.rs fix(node): inspect ancestor directories when resolving cjs re-exports during analysis (#21104) 2023-11-07 09:56:06 -05:00
path.rs fix(node): support resolving a package.json import to a builtin node module (#21576) 2023-12-14 15:09:05 +00:00
polyfill.rs fix(node): support resolving a package.json import to a builtin node module (#21576) 2023-12-14 15:09:05 +00:00
README.md chore(ext/node): correct publishing for ext/node (#15461) 2022-08-11 17:25:41 -04:00
resolution.rs fix(node): support resolving a package.json import to a builtin node module (#21576) 2023-12-14 15:09:05 +00:00

deno_node

require and other node related functionality for Deno.