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 8b90b8e883 refactor: per-worker resource table, take 2 (#3342)
- removes global `RESOURCE_TABLE` - resource tables are now created per `Worker`
  in `State`
- renames `CliResource` to `StreamResource` and moves all logic related
  to it to `cli/ops/io.rs`
- removes `cli/resources.rs`
- adds `state` argument to `op_read` and `op_write` and consequently adds
  `stateful_minimal_op` to `State`
- IMPORTANT NOTE: workers don't have access to process stdio - this is
  caused by fact that dropping worker would close stdout for process
  (because it's constructed from raw handle, which closes underlying file
  descriptor on drop)
2019-11-14 12:10:25 -05:00
..
examples Remove CoreResource::inspect_repr method (#3274) 2019-11-06 12:17:28 -05:00
libdeno Update to TypeScript 3.7 (#3275) 2019-11-13 13:42:34 -05:00
any_error.rs fix: panic during fetch (#2925) 2019-09-11 17:34:22 -04:00
build.rs remove appveyor specific code paths (#3071) 2019-10-05 21:19:00 -04:00
Cargo.toml Upgrade rust crates (#3292) 2019-11-07 16:21:51 -08:00
flags.rs Use system rustfmt instead of fixed binary (#2701) 2019-07-31 17:11:37 -04:00
isolate.rs core: gracefully handle bad op id (#3131) 2019-10-22 10:49:58 -04:00
js_errors.rs Use system rustfmt instead of fixed binary (#2701) 2019-07-31 17:11:37 -04:00
lib.rs core: Add ResourceTable (#3150) 2019-10-23 12:32:28 -04:00
libdeno.rs core: gracefully handle bad op id (#3131) 2019-10-22 10:49:58 -04:00
module_specifier.rs Update rust to 1.38.0 (#3030) 2019-10-03 09:16:06 -04:00
modules.rs refactor DenoPermissions.check_net & resolve_addr (#3182) 2019-10-23 10:19:26 -04:00
ops.rs core: gracefully handle bad op id (#3131) 2019-10-22 10:49:58 -04:00
README.md Adjust core/README.md text 2019-05-20 15:22:08 -04:00
resources.rs refactor: per-worker resource table, take 2 (#3342) 2019-11-14 12:10:25 -05:00
shared_queue.js feat: op registration in core (#3002) 2019-09-30 14:59:44 -04:00
shared_queue.rs feat: op registration in core (#3002) 2019-09-30 14:59:44 -04:00
shared_queue_test.js remove legacy Isolate.set_dispatch API (#3041) 2019-10-02 13:05:48 -04: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.