deno/core
Bartek Iwańczuk 5bc130be27
v1.1.2
2020-06-26 17:45:12 -04:00
..
examples feat(core): Ops can take several zero copy buffers (#4788) 2020-06-01 14:20:47 -04:00
bindings.rs Upgrade to rusty_v8 0.4.2 / V8 8.5.216 (#6503) 2020-06-26 20:17:15 +02:00
Cargo.toml v1.1.2 2020-06-26 17:45:12 -04:00
core.js core: add Deno.core.dispatchByName (#6395) 2020-06-21 16:34:43 +02:00
core_isolate.rs Upgrade to rusty_v8 0.4.2 / V8 8.5.216 (#6503) 2020-06-26 20:17:15 +02:00
core_test.js Clean up core/shared_queue.js (#5237) 2020-05-12 11:09:28 -04:00
encode_decode_test.js perf: Optimize TextEncoder and TextDecoder (#4430) 2020-03-19 21:31:56 +01:00
errors.rs Upgrade to rusty_v8 0.4.2 / V8 8.5.216 (#6503) 2020-06-26 20:17:15 +02:00
es_isolate.rs Upgrade to rusty_v8 0.4.2 / V8 8.5.216 (#6503) 2020-06-26 20:17:15 +02:00
flags.rs Replace libdeno with rusty_v8 (#3556) 2020-01-05 09:19:29 -05:00
lib.rs refactor: Split isolate and state using safe get_slot() (#5929) 2020-05-29 17:41:39 -04:00
module_specifier.rs Simplify fmt::Display for ModuleResolutionError (#5550) 2020-05-17 11:33:44 -04:00
modules.rs refactor: Split isolate and state using safe get_slot() (#5929) 2020-05-29 17:41:39 -04:00
ops.rs feat(core): add unregister op (#6214) 2020-06-09 18:14:13 -04:00
plugin_api.rs feat(core): Ops can take several zero copy buffers (#4788) 2020-06-01 14:20:47 -04:00
README.md Fix spelling: "--alow-write" => "--allow-write" (#5486) 2020-05-16 20:36:13 +02:00
resources.rs feat: startTLS (#4773) 2020-04-18 11:21:20 -04:00
shared_queue.rs Upgrade to rusty_v8 v0.4.0 (#4856) 2020-04-23 03:35:52 +02:00
zero_copy_buf.rs Upgrade to rusty_v8 0.4.2 / V8 8.5.216 (#6503) 2020-06-26 20:17:15 +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 Isolate which provides a way to execute JavaScript. The Isolate is modeled as a Future<Item=(), Error=JSError> which completes once all of its ops have completed.

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.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.