deno/core
2020-01-02 15:13:47 -05:00
..
examples Upgrades rust to 1.40.0 (#3542) 2019-12-23 09:59:44 -05:00
libdeno Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
any_error.rs fix: panic during fetch (#2925) 2019-09-11 17:34:22 -04:00
build.rs Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
Cargo.toml Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
flags.rs Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
isolate.rs repl: do not crash on async op reject (#3527) 2019-12-20 00:04:14 -05:00
js_errors.rs Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
lib.rs Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
libdeno.rs Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
module_specifier.rs fix typos (#3573) 2020-01-02 07:48:46 -05:00
modules.rs fix typos (#3573) 2020-01-02 07:48:46 -05:00
ops.rs Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
plugins.rs feat: first pass at native plugins (#3372) 2019-12-05 15:30:20 -05:00
README.md Adjust core/README.md text 2019-05-20 15:22:08 -04:00
resources.rs Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
shared_queue.js Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
shared_queue.rs feat: op registration in core (#3002) 2019-09-30 14:59:44 -04:00
shared_queue_test.js Happy new year! (#3578) 2020-01-02 15:13:47 -05:00

Deno Core

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.