1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/core
Bartek Iwańczuk 7b9737b9f4
feat(inspector): pipe console messages between terminal and inspector (#11134)
This commit adds support for piping console messages to inspector.

This is done by "wrapping" Deno's console implementation with default
console provided by V8 by the means of "Deno.core.callConsole" binding.

Effectively each call to "console.*" methods calls a method on Deno's
console and V8's console.
2021-06-27 02:27:50 +02:00
..
examples refactor: unify JavaScript script execution method (#11043) 2021-06-22 01:45:41 +02:00
async_cancel.rs chore: upgrade Rust to 1.53.0 (#11021) 2021-06-17 15:56:30 -04:00
async_cell.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
bindings.rs feat(inspector): pipe console messages between terminal and inspector (#11134) 2021-06-27 02:27:50 +02:00
Cargo.toml chore: upgrade serde_v8 (#11120) 2021-06-25 18:58:18 +02:00
core.js cleanup(core.js): make op wrapper arg names generic (#10675) 2021-05-18 13:43:21 +02: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.js chore: upgrade dprint plugins (#10397) 2021-04-28 10:08:51 -04:00
error.rs chore: upgrade Rust to 1.53.0 (#11021) 2021-06-17 15:56:30 -04:00
error_builder_test.js fix(core): error registration could pollute constructors (#10422) 2021-05-03 17:30:41 +02:00
extensions.rs core: don't include_str extension js code (#10786) 2021-05-29 16:20:52 +02:00
flags.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05: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: move JsRuntimeInspector to deno_core (#10763) 2021-05-26 21:07:12 +02:00
lib.deno_core.d.ts refactor(web): use encoding_rs for text encoding (#10844) 2021-06-05 23:10:07 +02:00
lib.rs fix(fetch): encode and decode headers as byte strings (#11070) 2021-06-26 17:34:24 +02:00
module_specifier.rs fix(cli): Don't statically error on dynamic unmapped bare specifiers (#10618) 2021-05-31 16:37:36 +02:00
modules.rs refactor: unify JavaScript script execution method (#11043) 2021-06-22 01:45:41 +02:00
normalize_path.rs feat(lsp): add import completions (#9821) 2021-03-25 11:13:37 +11:00
ops.rs refactor(ops): replace ZeroCopyBuf arg by 2nd generic deserializable arg (#10448) 2021-05-06 19:32:03 +02:00
ops_builtin.rs fix(core): don't panic on stdout/stderr write failures in Deno.core.print (#11039) 2021-06-22 04:39:59 +02:00
ops_json.rs fix(runtime/signal): use op_async_unref for op_signal_poll (#11097) 2021-06-25 13:15:35 +09:00
README.md docs(core): replaces dispatch references with op (#11054) 2021-06-20 17:12:55 +02:00
resources.rs perf: use BTreeMap for ResourceTable (#10074) 2021-04-09 14:07:24 -04:00
runtime.rs upgrade: rusty_v8 0.23.0 (V8 9.2.230.12) (#11113) 2021-06-25 12:54:53 +02:00
serialize_deserialize_test.js feat: add structured cloning to Deno.core (#9458) 2021-02-16 14:20:21 +01: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.