1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/runtime/js
2021-02-04 15:05:36 +01:00
..
00_bootstrap_namespace.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
01_build.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
01_colors.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
01_errors.js update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
01_internals.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
01_version.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
01_web_util.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
02_console.js fix: don't swallow customInspect exceptions (#9095) 2021-01-14 14:18:51 -05:00
06_util.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
10_dispatch_minimal.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
11_timers.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
11_workers.js fix(cli): Move WorkerOptions::deno types to unstable (#9163) 2021-01-29 08:15:59 -05:00
12_io.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
13_buffer.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
30_files.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
30_fs.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
30_metrics.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
30_net.js refactor: IO resource types, fix concurrent read/write and graceful close (#9118) 2021-01-29 01:35:07 -08:00
30_os.js fix(runtime): fix recursive dispatches of unload event (#9207) 2021-01-21 16:44:48 +09:00
40_compiler_api.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
40_diagnostics.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
40_error_stack.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
40_fs_events.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
40_net_unstable.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
40_performance.js fix(runtime/js): use DOMException in Performance#measure (#9142) 2021-01-24 16:05:18 +01:00
40_permissions.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
40_plugins.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
40_process.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
40_read_file.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
40_signals.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
40_testing.js chore: Enforce ban-untagged-todo lint rule (#9135) 2021-01-17 00:32:59 +01:00
40_tls.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
40_tty.js update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
40_write_file.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
41_prompt.js chore: update copyright to 2021 (#9092) 2021-01-11 18:13:41 +01:00
90_deno_ns.js feat(unstable): add Deno.resolveDns API (#8790) 2021-01-19 09:39:04 -05:00
99_main.js refactor: rewrite File implementation (#9334) 2021-02-04 15:05:36 +01:00
README.md feat: add --location=<href> and globalThis.location (#7369) 2021-01-07 19:06:08 +01:00

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