1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/core
KrisChambers 1cd2267500
feat(info): Dependency count and sizes (#6786)
This commit changes "deno info" subcommand logic.

- Modules are no longer loaded into V8 isolate - analysis
  is done using ModuleGraph.
- Removed deno_core::Deps structure.
- Modules are no longer type-checked and transpiled - 
  "compiled" file is shown only if it is already available.
- Added number of unique dependencies for root module.
- Changed tree output:
  - file size is shown next to the dependency
  - repeated dependencies are marked with "*"
  - used less spaces in prefix to save terminal width
2020-09-07 15:59:47 +02:00
..
examples refactor(core): rename CoreIsolate to JsRuntime (#7373) 2020-09-06 21:44:29 +02:00
basic_state.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
bindings.rs refactor(core): rename CoreIsolate to JsRuntime (#7373) 2020-09-06 21:44:29 +02:00
Cargo.toml Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
core.js refactor(core): rename CoreIsolate to JsRuntime (#7373) 2020-09-06 21:44:29 +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 refactor(core): rename CoreIsolate to JsRuntime (#7373) 2020-09-06 21:44:29 +02:00
flags.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
lib.rs feat(info): Dependency count and sizes (#6786) 2020-09-07 15:59:47 +02:00
module_specifier.rs unify path normalization utility (#6865) 2020-08-12 16:34:17 -04:00
modules.rs feat(info): Dependency count and sizes (#6786) 2020-09-07 15:59:47 +02:00
normalize_path.rs unify path normalization utility (#6865) 2020-08-12 16:34:17 -04:00
ops.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
plugin_api.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +02:00
README.md refactor(core): rename CoreIsolate to JsRuntime (#7373) 2020-09-06 21:44:29 +02:00
resources.rs feat: startTLS (#4773) 2020-04-18 11:21:20 -04:00
runtime.rs refactor(core): rename CoreIsolate to JsRuntime (#7373) 2020-09-06 21:44:29 +02:00
shared_queue.rs Move JSON ops to deno_core (#7336) 2020-09-06 02:34:02 +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 JsRuntime which provides a way to execute JavaScript. The JsRuntime 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.