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 d4c8fa263d
refactor(core): don't depend on get_identity_hash for promises (#8352)
This commit changes how pending promise exceptions are stored
in JsRuntime by using global handle to promise instead of its
identity hash.
2020-11-11 23:11:40 +01:00
..
examples reland JsRuntime/Worker is not a Future (#7924) 2020-10-11 13:20:40 +02:00
bindings.rs refactor(core): don't depend on get_identity_hash for promises (#8352) 2020-11-11 23:11:40 +01:00
Cargo.toml v1.5.2 (#8301) 2020-11-09 10:58:21 +11:00
core.js build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
core_test.js fix: typos in cli and core (#8082) 2020-10-23 13:19:37 +02:00
encode_decode_test.js build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
error.rs fix(core/error): Remove extra newline from JsError::fmt() (#8145) 2020-10-31 19:57:19 +01:00
flags.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
gotham_state.rs chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
lib.rs refactor(core): more control over isolate creation (#8000) 2020-10-17 11:56:15 +02:00
module_specifier.rs Revert "feat(cli): Add deno cache --test and --worker (#7920)" (#8089) 2020-10-23 16:56:25 +02:00
modules.rs fix: typos in cli and core (#8082) 2020-10-23 13:19:37 +02:00
normalize_path.rs fix: typos in cli and core (#8082) 2020-10-23 13:19:37 +02:00
ops.rs docs(core): document several concepts around JsRuntime and ops (#7897) 2020-11-06 12:26:14 +11:00
plugin_api.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
README.md reland JsRuntime/Worker is not a Future (#7924) 2020-10-11 13:20:40 +02:00
resources.rs docs(core): document several concepts around JsRuntime and ops (#7897) 2020-11-06 12:26:14 +11:00
runtime.rs refactor(core): don't depend on get_identity_hash for promises (#8352) 2020-11-11 23:11:40 +01:00
shared_queue.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
zero_copy_buf.rs chore: add copyright (#7593) 2020-09-21 08:26:41 -04: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.dispatch() function to trigger the "dispatch" callback in Rust. The user is responsible for encoding both the request and response into a Uint8Array.

Documentation for this crate is thin at the moment. Please see http_bench_bin_ops.rs and http_bench_json_ops.rs as a simple example of usage.

TypeScript support and a lot of other functionality is not available at this layer. See the CLI for that.