deno/runtime/js
Nayeem Rahman 4d18f558e4
feat(ext/web): Add error events for event listener and timer errors (#14159)
- feat: Add handleable error event for even listener errors
- feat: Add handleable error event for setTimeout()/setInterval() errors
- feat: Add Deno.core.destructureError()
- feat: Add Deno.core.terminate()
- fix: Don't throw listener errors from dispatchEvent()
- fix: Use biased mode when selecting between mod_evaluate() and
  run_event_loop() results
2022-04-13 11:50:57 +02:00
..
01_build.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
01_errors.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
01_version.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
01_web_util.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
06_util.js refactor: cleanup assert() & AssertionError definitions (#13859) 2022-03-19 13:57:37 +01:00
10_permissions.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
11_workers.js feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
12_io.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
13_buffer.js refactor: cleanup assert() & AssertionError definitions (#13859) 2022-03-19 13:57:37 +01:00
30_fs.js refactor: primordials for instanceof (#13527) 2022-02-01 18:06:11 +01:00
30_os.js feat(unstable): add Deno.getUid (#13496) 2022-01-31 14:44:19 +09:00
40_compiler_api.js feat(cli): support data url (#13667) 2022-02-25 11:26:13 +11:00
40_diagnostics.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
40_error_stack.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
40_files.js feat: Add Deno.FsFile, deprecate Deno.File (#13660) 2022-02-15 13:59:04 +01:00
40_fs_events.js refactor: primordials for instanceof (#13527) 2022-02-01 18:06:11 +01:00
40_http.js feat(unstable): Add Deno.upgradeHttp API (#13618) 2022-03-16 14:54:18 +01:00
40_process.js fix: Deno.run - do not modify user provided cmd array (#14109) 2022-03-25 08:17:13 -04:00
40_read_file.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
40_signals.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
40_testing.js feat(test): Add "name", "origin" and "parent" to "Deno.TestContext" (#14007) 2022-04-06 16:51:38 +02:00
40_tty.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
40_write_file.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
41_prompt.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
90_deno_ns.js feat(unstable): add ref/unref to Listener (#13961) 2022-03-23 12:04:20 +09:00
99_main.js feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02: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