0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-11 14:47:26 -04:00
deno/cli/rt
2020-09-10 12:49:47 +02:00
..
00_bootstrap_namespace.js simplify deno_web init (#7313) 2020-09-01 16:32:07 -04:00
01_build.js
01_colors.js
01_errors.js refactor: remove OpError, use ErrBox everywhere (#7187) 2020-08-26 00:22:15 +02:00
01_internals.js
01_version.js
01_web_util.js
02_console.js feat(console): support CSS styling with "%c" (#7357) 2020-09-10 12:49:47 +02:00
03_dom_iterable.js
06_util.js fix: don't expose globalThis.__bootstrap (#7344) 2020-09-04 07:52:19 -04:00
10_dispatch_json.js Simplify ErrBox-to-class mapping & hook it up to core json ops (#7195) 2020-08-26 18:48:04 +02:00
10_dispatch_minimal.js Simplify ErrBox-to-class mapping & hook it up to core json ops (#7195) 2020-08-26 18:48:04 +02:00
11_crypto.js
11_resources.js
11_streams.js refactor(op_crates/web): move abort signal (#7117) 2020-08-19 14:43:20 +02:00
11_timers.js
11_url.js fix(URLSearchParams): fix handling of + character (#7314) 2020-09-01 20:34:41 +02:00
11_workers.js feat: Implement WebSocket API (#7051) 2020-09-05 10:39:25 -04:00
12_io.js
13_buffer.js
20_blob.js Blob.arrayBuffer returns uint8array (#7086) 2020-08-17 17:46:08 -04:00
20_headers.js
20_streams_queuing_strategy.js
21_dom_file.js
21_filereader.js feat(web): FileReader API (#6673) 2020-08-11 14:00:53 +02:00
22_form_data.js
23_multipart.js
24_body.js fix: Empty Response body returns 0-byte array (#7387) 2020-09-08 11:46:15 +02:00
25_request.js
26_fetch.js feat(cli): custom http client for fetch (#6918) 2020-08-05 20:44:03 +02:00
27_websocket.js feat: Implement WebSocket API (#7051) 2020-09-05 10:39:25 -04:00
30_files.js refactor: migrate ops to new dispatch wrapper (#7118) 2020-08-28 17:08:24 +02:00
30_fs.js fix: use millisecond precision for Deno.futime and Deno.utime (#7299) 2020-09-01 10:03:07 -04:00
30_metrics.js
30_net.js
30_os.js feat(unstable): Add Deno.systemMemoryInfo() (#7350) 2020-09-10 10:38:17 +02:00
40_compiler_api.js
40_diagnostics.js Rename cli/js2 to cli/rt (#6857) 2020-07-23 16:27:26 +02:00
40_error_stack.js fix(op_crates/web): Use "deno:" URLs for internal script specifiers (#7383) 2020-09-09 14:23:57 +02:00
40_fs_events.js fix(cli/js/ops/fs_events): Ignore polling errors caused by return() (#6785) 2020-07-23 21:33:52 -04:00
40_net_unstable.js
40_performance.js
40_permissions.js
40_plugins.js
40_process.js feat: Support file URLs in Deno.run for executable (#6994) 2020-08-12 14:20:34 -04:00
40_read_file.js
40_repl.js
40_signals.js
40_testing.js
40_tls.js
40_tty.js
40_write_file.js
90_deno_ns.js feat(unstable): Add Deno.systemMemoryInfo() (#7350) 2020-09-10 10:38:17 +02:00
99_main.js feat: Implement WebSocket API (#7051) 2020-09-05 10:39:25 -04: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