1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-29 02:29:06 -05:00
denoland-deno/cli/rt
2020-11-02 13:51:56 +11:00
..
00_bootstrap_namespace.js
01_build.js
01_colors.js Reland feat(cli/console): inspect with colors regardless of Deno.noColor (#7976) 2020-10-15 12:32:03 +02:00
01_errors.js
01_internals.js
01_version.js
01_web_util.js
02_console.js Reland feat(cli/console): inspect with colors regardless of Deno.noColor (#7976) 2020-10-15 12:32:03 +02:00
06_util.js
10_dispatch_minimal.js fix(core): handle unregistered errors in core better (#7817) 2020-10-05 20:35:51 +11:00
11_crypto.js
11_timers.js feat(cli/ops): add the sleep_sync op (#7974) 2020-10-15 21:06:31 -04:00
11_workers.js fix(cli/worker): Print error stacks from the origin Worker (#7987) 2020-10-20 15:05:42 +11:00
12_io.js
13_buffer.js
27_websocket.js fix(op_crates/web): Expose event properties in console output (#8103) 2020-10-27 09:22:03 +11:00
30_files.js fix(cli): use rid getter for stdio (#8014) 2020-10-20 13:20:17 +02:00
30_fs.js fix(cli): handle URL paths in Deno.mkdir() (#8140) 2020-10-27 13:21:32 +01:00
30_metrics.js
30_net.js fix: net listen crashes on explicit undefined hostname (#7706) 2020-09-27 10:44:53 -04:00
30_os.js feat(unstable): add Deno.systemCpuInfo() (#7774) 2020-10-26 10:54:27 -04:00
40_compiler_api.js refactor(cli): migrate runtime compile/bundle to new infrastructure (#8192) 2020-11-02 13:51:56 +11:00
40_diagnostics.js
40_error_stack.js fix(cli/rt/error_stack): Improve message line formatting (#7860) 2020-10-08 11:05:19 +02:00
40_fs_events.js
40_net_unstable.js
40_performance.js fix(cli/rt/performance): check for object props in startOrMeasureOptions before throwing (#7884) 2020-10-20 13:43:29 +11:00
40_permissions.js
40_plugins.js
40_process.js
40_read_file.js
40_signals.js
40_testing.js Reland feat(cli/console): inspect with colors regardless of Deno.noColor (#7976) 2020-10-15 12:32:03 +02:00
40_tls.js
40_tty.js
40_write_file.js
41_prompt.js fix(cli): prompt works with windows eol and eof (#8149) 2020-10-29 18:35:58 +01:00
90_deno_ns.js fix: Deno.fdata(), Deno.fdatasync() (#8193) 2020-10-30 13:06:09 +01:00
99_main.js fix: typos in cli and core (#8082) 2020-10-23 13:19:37 +02:00
README.md docs: end sentences with a period in markdown (#7813) 2020-10-04 07:19:11 +11: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