quic: multiple fixups and updates

Signed-off-by: James M Snell <jasnell@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/59342
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
This commit is contained in:
James M Snell
2025-08-03 06:16:03 -07:00
parent a6c5d27739
commit cd9fd09a27
44 changed files with 646 additions and 360 deletions

View File

@@ -1135,6 +1135,16 @@ If the ES module being `require()`'d contains top-level `await`, this flag
allows Node.js to evaluate the module, try to locate the
top-level awaits, and print their location to help users find them.
### `--experimental-quic`
<!-- YAML
added: REPLACEME
-->
> Stability: 1.1 - Active development
Enable experimental support for the QUIC protocol.
### `--experimental-require-module`
<!-- YAML
@@ -1816,6 +1826,16 @@ added: v21.2.0
Disable exposition of [Navigator API][] on the global scope.
### `--no-experimental-quic`
<!-- YAML
added: REPLACEME
-->
> Stability: 1.1 - Active Development
Use this flag to disable QUIC.
### `--no-experimental-repl-await`
<!-- YAML

View File

@@ -159,6 +159,9 @@
"experimental-print-required-tla": {
"type": "boolean"
},
"experimental-quic": {
"type": "boolean"
},
"experimental-repl-await": {
"type": "boolean"
},

View File

@@ -226,6 +226,9 @@ flag is no longer required as WASI is enabled by default.
.It Fl -experimental-quic
Enable the experimental QUIC support.
.
.It Fl -no-experimental-quic
Disable the experimental QUIC support.
.
.It Fl -experimental-inspector-network-resource
Enable experimental support for inspector network resources.
.