0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/core
Bartek Iwańczuk a1f0796fcc
feat: Add support for import assertions and JSON modules (#12866)
This commit adds proper support for import assertions and JSON modules.

Implementation of "core/modules.rs" was changed to account for multiple possible
module types, instead of always assuming that the code is an "ES module". In
effect "ModuleMap" now has knowledge about each modules' type (stored via
"ModuleType" enum). Module loading pipeline now stores information about
expected module type for each request and validates that expected type matches
discovered module type based on file's "MediaType".

Relevant tests were added to "core/modules.rs" and integration tests,
additionally multiple WPT tests were enabled.

There are still some rough edges in the implementation and not all WPT were
enabled, due to:
a) unclear BOM handling in source code by "FileFetcher"
b) design limitation of Deno's "FileFetcher" that doesn't download the same
module multiple times in a single run

Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
2021-12-15 19:22:36 +01:00
..
examples example(core): add example for FS module loading (#13064) 2021-12-13 13:14:04 +01:00
00_primordials.js feat(fmt): add basic JS doc formatting (#11902) 2021-09-02 18:28:12 -04:00
01_core.js feat(core): Add ability to "ref" and "unref" pending ops (#12889) 2021-11-25 19:49:09 +01:00
02_error.js fix(cli/fmt_errors): Abbreviate long data URLs in stack traces (#12127) 2021-09-18 15:40:04 +02:00
async_cancel.rs chore: upgrade to Rust 1.57.0 (#12968) 2021-12-04 14:19:06 +01:00
async_cell.rs perf(core): optimize waker capture in AsyncRefCell (#12332) 2021-11-08 12:49:10 -08:00
bindings.rs feat: Add support for import assertions and JSON modules (#12866) 2021-12-15 19:22:36 +01:00
Cargo.toml fix: upgrade swc fixing many bundling and --no-check bugs (#13025) 2021-12-08 19:12:14 -05:00
encode_decode_test.js chore: use strict mode for internal runtime, core, and op_crates js (#9391) 2021-02-04 23:18:32 +01:00
error.rs feat: Add support for import assertions and JSON modules (#12866) 2021-12-15 19:22:36 +01:00
error_builder_test.js refactor: use primordials in runtime, extensions and core (#11500) 2021-07-26 13:52:59 +02:00
error_codes.rs refactor: re-export anyhow from deno_core (#12777) 2021-11-16 09:02:28 -05:00
extensions.rs refactor: re-export anyhow from deno_core (#12777) 2021-11-16 09:02:28 -05:00
flags.rs chore: update to rusty_v8 0.33.0 (#12564) 2021-10-27 23:26:15 +02:00
gotham_state.rs fix(core): better "missing type" GothamState error (#10189) 2021-04-14 23:11:39 +02:00
icudtl.dat upgrade: rusty_v8 0.23.0 (V8 9.2.230.12) (#11113) 2021-06-25 12:54:53 +02:00
inspector.rs refactor: re-export anyhow from deno_core (#12777) 2021-11-16 09:02:28 -05:00
internal.d.ts chore: upgrade Rust to 1.54.0 (#11554) 2021-07-30 15:03:41 +02:00
lib.deno_core.d.ts feat(core): intercept unhandled promise rejections (#12910) 2021-11-28 00:46:12 +01:00
lib.rs feat: Add support for import assertions and JSON modules (#12866) 2021-12-15 19:22:36 +01:00
module_specifier.rs fix(doc): fix rustdoc bare_urls warning (#11921) 2021-09-05 16:22:45 +02:00
modules.rs feat: Add support for import assertions and JSON modules (#12866) 2021-12-15 19:22:36 +01:00
normalize_path.rs fix(doc): fix rustdoc bare_urls warning (#11921) 2021-09-05 16:22:45 +02:00
ops.rs feat(core): Add ability to "ref" and "unref" pending ops (#12889) 2021-11-25 19:49:09 +01:00
ops_builtin.rs refactor: re-export anyhow from deno_core (#12777) 2021-11-16 09:02:28 -05:00
ops_json.rs feat(core): Add ability to "ref" and "unref" pending ops (#12889) 2021-11-25 19:49:09 +01:00
ops_metrics.rs feat(core): Add ability to "ref" and "unref" pending ops (#12889) 2021-11-25 19:49:09 +01:00
README.md docs(core): replaces dispatch references with op (#11054) 2021-06-20 17:12:55 +02:00
resources.rs refactor: re-export anyhow from deno_core (#12777) 2021-11-16 09:02:28 -05:00
runtime.rs feat: Add support for import assertions and JSON modules (#12866) 2021-12-15 19:22:36 +01:00
serialize_deserialize_test.js feat(extensions/web): add structuredClone function (#11572) 2021-08-09 10:39:00 +02:00

Deno Core Crate

crates docs

The main dependency of this crate is rusty_v8, which provides the V8-Rust bindings.

This Rust crate contains the essential V8 bindings for Deno's command-line interface (Deno CLI). The main abstraction here is the JsRuntime which provides a way to execute JavaScript.

The JsRuntime implements an event loop abstraction for the executed code that keeps track of all pending tasks (async ops, dynamic module loads). It is user's responsibility to drive that loop by using JsRuntime::run_event_loop method - it must be executed in the context of Rust's future executor (eg. tokio, smol).

In order to bind Rust functions into JavaScript, use the Deno.core.opSync() and Deno.core.opAsync() functions to trigger the "op_fn" callback in JsRuntime::register_op on Rust side. A conventional way to handle "op_fn" callbacks is to use the op_sync and op_async functions.

Documentation for this crate is thin at the moment. Please see hello_world.rs and http_bench_json_ops.rs as examples of usage.

TypeScript support and lots of other functionality are not available at this layer. See the CLI for that.