1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/core
Bartek Iwańczuk ac705b7936
v1.3.2
2020-08-29 09:53:13 -04:00
..
examples Split core http benchmark into 'bin_ops' and 'json_ops' variants (#7147) 2020-08-21 20:21:32 +02:00
bindings.rs Convert the remaining http_bench ops to json ops (#7143) 2020-08-21 13:11:04 +02:00
Cargo.toml v1.3.2 2020-08-29 09:53:13 -04:00
core.js Simplify ErrBox-to-class mapping & hook it up to core json ops (#7195) 2020-08-26 18:48:04 +02:00
core_isolate.rs Simplify ErrBox-to-class mapping & hook it up to core json ops (#7195) 2020-08-26 18:48:04 +02:00
core_test.js Clean up core/shared_queue.js (#5237) 2020-05-12 11:09:28 -04:00
encode_decode_test.js Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
errors.rs Remove some more unnecessary 'to_string()' calls (#7190) 2020-08-26 01:13:20 +02:00
es_isolate.rs upgrade: rusty_v8 0.9.1 / V8 8.6.334 (#7243) 2020-08-29 13:21:22 +02:00
flags.rs Replace libdeno with rusty_v8 (#3556) 2020-01-05 09:19:29 -05:00
lib.rs Simplify ErrBox-to-class mapping & hook it up to core json ops (#7195) 2020-08-26 18:48:04 +02:00
module_specifier.rs unify path normalization utility (#6865) 2020-08-12 16:34:17 -04:00
modules.rs chore: use matches macro for bool matches (#6904) 2020-07-28 09:50:45 -04:00
normalize_path.rs unify path normalization utility (#6865) 2020-08-12 16:34:17 -04:00
ops.rs Undo JsonOpDispatcher and OpDispatcher traits (#7023) 2020-08-12 16:44:58 +02:00
plugin_api.rs BREAKING(core): Remove control slice from ops (#6048) 2020-07-08 11:23:50 -04:00
README.md Split core http benchmark into 'bin_ops' and 'json_ops' variants (#7147) 2020-08-21 20:21:32 +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 Async op dispatcher support with 'stateful_json_op_(a)sync()' (#7095) 2020-08-18 20:50:52 +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_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.