0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 01:44:26 -05:00
deno/core
Bartek Iwańczuk 526c9196e2
v1.0.2
2020-05-22 20:00:28 +02:00
..
examples
any_error.rs
bindings.rs fix: source maps in inspector (#5223) 2020-05-11 23:48:36 +02:00
Cargo.toml v1.0.2 2020-05-22 20:00:28 +02:00
core.js Clean up core/shared_queue.js (#5237) 2020-05-12 11:09:28 -04:00
core_test.js Clean up core/shared_queue.js (#5237) 2020-05-12 11:09:28 -04:00
encode_decode_test.js
es_isolate.rs Fix typos across the repo (#5295) 2020-05-14 06:38:42 +02:00
flags.rs
isolate.rs Miscellaneous documentation and spelling improvements (#5527) 2020-05-17 19:24:39 +02:00
js_errors.rs fix some unwrap() in Rust (#5485) 2020-05-16 09:41:32 -04:00
lib.rs Change plugin interface to prevent segfaults when unloading plugin (#5210) 2020-05-11 22:39:13 +02:00
module_specifier.rs Simplify fmt::Display for ModuleResolutionError (#5550) 2020-05-17 11:33:44 -04:00
modules.rs
ops.rs
plugin_api.rs Change plugin interface to prevent segfaults when unloading plugin (#5210) 2020-05-11 22:39:13 +02:00
README.md Fix spelling: "--alow-write" => "--allow-write" (#5486) 2020-05-16 20:36:13 +02:00
resources.rs
shared_queue.rs

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.