deno/runtime/js
Bartek Iwańczuk 5b2dc85a3c
Some checks are pending
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / build libs (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
Revert "feat: use Node.js timers by default (#31272)" (#31490)
This reverts commit 7ada8d6589.

This is a breaking change and is postponed until Deno 3.0.
2025-12-04 00:50:11 +00: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 fix: support Deno.permissions.query({name:"import"}) (#29610) 2025-06-26 22:13:56 +02:00
11_workers.js refactor: merge deno_console into deno_web (#31185) 2025-11-05 08:46:48 +01:00
40_fs_events.js chore: use SymbolAsyncDispose and SymbolDispose primordials (#30828) 2025-09-24 13:23:35 +02:00
40_tty.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
41_prompt.js fix: remove unnecessary whitespace in prompt function (#28868) 2025-04-16 17:49:06 +00:00
90_deno_ns.js refactor: merge deno_console into deno_web (#31185) 2025-11-05 08:46:48 +01:00
98_global_scope_shared.js Revert "feat: use Node.js timers by default (#31272)" (#31490) 2025-12-04 00:50:11 +00:00
98_global_scope_window.js refactor: merge deno_console into deno_web (#31185) 2025-11-05 08:46:48 +01:00
98_global_scope_worker.js refactor: merge deno_console into deno_web (#31185) 2025-11-05 08:46:48 +01:00
99_main.js Revert "refactor: remove 'managed globals' infra (#31318)" (#31491) 2025-12-03 15:27:09 -08: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