1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
denoland-deno/runtime
Aaron O'Mullan fec1b2a5a4
refactor: new optimized op-layer using serde_v8 (#9843)
- Improves op performance.
- Handle op-metadata (errors, promise IDs) explicitly in the op-layer vs
  per op-encoding (aka: out-of-payload).
- Remove shared queue & custom "asyncHandlers", all async values are
  returned in batches via js_recv_cb.
- The op-layer should be thought of as simple function calls with little
  indirection or translation besides the conceptually straightforward
  serde_v8 bijections.
- Preserve concepts of json/bin/min as semantic groups of their
  inputs/outputs instead of their op-encoding strategy, preserving these
  groups will also facilitate partial transitions over to v8 Fast API for the
  "min" and "bin" groups
2021-03-31 10:37:38 -04:00
..
examples Make ModuleSpecifier a type alias, not wrapper struct (#9531) 2021-02-17 13:47:18 -05:00
js refactor(runtime/permissions): Rename permission structs (#9841) 2021-03-21 08:49:58 -04:00
ops refactor: new optimized op-layer using serde_v8 (#9843) 2021-03-31 10:37:38 -04:00
build.rs refactor: move Console to op_crates/console (#9770) 2021-03-12 21:23:59 +01:00
Cargo.toml chore: release crates (#9847) 2021-03-21 16:10:08 +01:00
colors.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
errors.rs feat: WebGPU API (#7977) 2021-03-01 11:31:13 +01:00
fs_util.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
inspector.rs upgrade: rusty_v8 0.16.0, v8 8.9.255.3 (#9180) 2021-01-19 18:40:30 -08:00
js.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
lib.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
metrics.rs refactor: new optimized op-layer using serde_v8 (#9843) 2021-03-31 10:37:38 -04:00
permissions.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
README.md chore: fix decendents in runtime readme (#9718) 2021-03-08 13:23:46 +01:00
resolve_addr.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
tokio_util.rs upgrade: tokio 1.0 (#8779) 2021-01-11 23:50:02 -08:00
web_worker.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
worker.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00

deno_runtime crate

crates docs

This is a slim version of the Deno CLI which removes typescript integration and various tooling (like lint and doc). Basically only JavaScript execution with Deno's operating system bindings (ops).

Stability

This crate is built using battle-tested modules that were originally in deno crate, however the API of this crate is subject to rapid and breaking changes.

MainWorker

The main API of this crate is MainWorker. MainWorker is a structure encapsulating deno_core::JsRuntime with a set of ops used to implement Deno namespace.

When creating a MainWorker implementors must call MainWorker::bootstrap to prepare JS runtime for use.

MainWorker is highly configurable and allows to customize many of the runtime's properties:

  • module loading implementation
  • error formatting
  • support for source maps
  • support for V8 inspector and Chrome Devtools debugger
  • HTTP client user agent, CA certificate
  • random number generator seed

Worker Web API

deno_runtime comes with support for Worker Web API. The Worker API is implemented using WebWorker structure.

When creating a new instance of MainWorker implementors must provide a callback function that is used when creating a new instance of Worker.

All WebWorker instances are descendents of MainWorker which is responsible for setting up communication with child worker. Each WebWorker spawns a new OS thread that is dedicated solely to that worker.