0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-02 04:38:21 -05:00
denoland-deno/runtime
Luca Casonato e83ff62ccb
chore: split web op crate (#9635)
This commit starts splitting out the deno_web op crate into multiple
smaller crates. This commit splits out WebIDL and URL API, but in the
future I want to split out each spec into its own crate. That means we
will have (in rough order of loading): `webidl`, `dom`, `streams`,
`console`, `encoding`, `url`, `file`, `fetch`, `websocket`, and
`webgpu` crates.
2021-03-12 16:17:18 +01:00
..
examples Make ModuleSpecifier a type alias, not wrapper struct (#9531) 2021-02-17 13:47:18 -05:00
js fix(runtime/js): add navigator interface objects (#9685) 2021-03-08 13:27:49 +01:00
ops chore: split web op crate (#9635) 2021-03-12 16:17:18 +01:00
build.rs chore: split web op crate (#9635) 2021-03-12 16:17:18 +01:00
Cargo.toml chore: split web op crate (#9635) 2021-03-12 16:17:18 +01:00
colors.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05: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
http_util.rs fix: improve http client builder error message (#9380) 2021-02-03 11:40:43 +01: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 chore: make all tests annotated with #[cfg(test)] (#9347) 2021-02-01 10:55:23 -05:00
lib.rs chore: split web op crate (#9635) 2021-03-12 16:17:18 +01:00
metrics.rs chore(cli/runtime): use re-export serde from deno_core (#9599) 2021-02-26 07:18:35 +11:00
permissions.rs chore(cli/runtime): use re-export serde from deno_core (#9599) 2021-02-26 07:18:35 +11: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 chore: split web op crate (#9635) 2021-03-12 16:17:18 +01:00
worker.rs chore: split web op crate (#9635) 2021-03-12 16:17:18 +01: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.