0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 01:44:26 -05:00
deno/runtime/js
2021-07-12 12:44:49 +02:00
..
01_build.js
01_errors.js
01_version.js
01_web_util.js fix: align DedicatedWorkerGlobalScope event handlers to spec (#11353) 2021-07-10 23:32:10 +02:00
06_util.js
11_workers.js
12_io.js
13_buffer.js
30_fs.js
30_metrics.js
30_os.js refactor: use primordials in runtime/, part2 (#11248) 2021-07-04 00:17:52 +02:00
40_compiler_api.js refactor: use primordials in runtime/, part2 (#11248) 2021-07-04 00:17:52 +02:00
40_diagnostics.js
40_error_stack.js
40_files.js refactor: use primordials in runtime/, part2 (#11248) 2021-07-04 00:17:52 +02:00
40_fs_events.js refactor: use primordials in runtime/, part2 (#11248) 2021-07-04 00:17:52 +02:00
40_http.js refactor: deno_http op crate (#11335) 2021-07-12 12:44:49 +02:00
40_permissions.js refactor: use primordials in runtime/, part2 (#11248) 2021-07-04 00:17:52 +02:00
40_plugins.js Revert "Remove unstable native plugins (#10908)" 2021-07-11 18:12:26 -07:00
40_process.js refactor: use primordials in runtime/, part2 (#11248) 2021-07-04 00:17:52 +02:00
40_read_file.js
40_signals.js refactor: use primordials in runtime/, part2 (#11248) 2021-07-04 00:17:52 +02:00
40_testing.js feat(test): add --shuffle flag to randomize test ordering (#11163) 2021-07-05 21:20:33 -04:00
40_tty.js
40_write_file.js refactor: use primordials in runtime/, part2 (#11248) 2021-07-04 00:17:52 +02:00
41_prompt.js refactor: use primordials in runtime/, part2 (#11248) 2021-07-04 00:17:52 +02:00
90_deno_ns.js Revert "Remove unstable native plugins (#10908)" 2021-07-11 18:12:26 -07:00
99_main.js fix: align DedicatedWorkerGlobalScope event handlers to spec (#11353) 2021-07-10 23:32:10 +02:00
README.md

Runtime JavaScript Code

This directory contains Deno runtime code written in plain JavaScript.

Each file is a plain, old script, not ES modules. The reason is that snapshotting ES modules is much harder, especially if one needs to manipulate global scope (like in case of Deno).

Each file is prefixed with a number, telling in which order scripts should be loaded into V8 isolate. This is temporary solution and we're striving not to require specific order (though it's not 100% obvious if that's feasible).

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