1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00
denoland-deno/runtime
Inteon 20627c9136
refactor: update minimal ops & rename to buffer ops (#9719)
This commit rewrites "dispatch_minimal" into "dispatch_buffer".

It's part of an effort to unify JS interface for ops for both json
and minimal (buffer) ops.

Before this commit "minimal ops" could be either sync or async
depending on the return type from the op, but this commit changes
it to have separate signatures for sync and async ops (just like 
in case of json ops).
2021-03-18 14:10:27 +01:00
..
examples Make ModuleSpecifier a type alias, not wrapper struct (#9531) 2021-02-17 13:47:18 -05:00
js refactor: update minimal ops & rename to buffer ops (#9719) 2021-03-18 14:10:27 +01:00
ops refactor: update minimal ops & rename to buffer ops (#9719) 2021-03-18 14:10:27 +01:00
build.rs refactor: move Console to op_crates/console (#9770) 2021-03-12 21:23:59 +01:00
Cargo.toml chore: Upgrade rustyline to 8.0.0 (#9781) 2021-03-15 14:08:41 +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 refactor: move Console to op_crates/console (#9770) 2021-03-12 21:23:59 +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 refactor: clean up permission handling (#9367) 2021-03-17 17:45:12 -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 fix(runtime): do not require deno namespace in workers for crypto (#9784) 2021-03-14 20:01:55 +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.