1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-10 08:09:06 -05:00
denoland-deno/runtime/js
snek ccd375802a
refactor(quic): introduce endpoint, 0rtt, cleanup (#27444)
A QUIC endpoint is a UDP socket which multiplexes QUIC sessions, which
may be initiated in either direction. This PR exposes endpoints and
moves things around as needed.

Now that endpoints can be reused between client connections, we have a
way to share tls tickets between them and allow 0rtt. This interface
currently works by conditionally returning a promise.

Also cleaned up the rust op names, fixed some lingering problems in the
data transmission, and switched to explicit error types.
2025-01-06 15:24:59 +01:00
..
01_errors.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
01_version.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
06_util.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
10_permissions.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
11_workers.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
30_os.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
40_fs_events.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
40_process.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
40_signals.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
40_tty.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
41_prompt.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
90_deno_ns.js refactor(quic): introduce endpoint, 0rtt, cleanup (#27444) 2025-01-06 15:24:59 +01:00
98_global_scope_shared.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
98_global_scope_window.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
98_global_scope_worker.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
99_main.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
README.md chore: fix outdated note in runtime/js/README.md (#23673) 2024-05-05 01:30:53 +00:00

Runtime JavaScript Code

This directory contains Deno runtime code written in plain JavaScript.

Each file is an ES module and is prefixed with a number, telling in which order scripts should be loaded into V8 isolate.

Deno Web APIs

This directory facilities Web APIs that are available in Deno.

Please note, that some implementations might not be completely aligned with specification.

Some Web APIs are using ops under the hood, eg. console, performance.

Implemented Web APIs