1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/runtime
Leo K 2ac031d6fd
feat(unstable): clean environmental variables for subprocess (#11571)
This commit adds "Deno.RunOptions.clearEnv" option, that allows
to clear environmental variables from parent process before spawning
a subprocess.
2021-08-04 21:47:43 +02:00
..
examples feat(runtime): implement navigator.hardwareConcurrency (#11448) 2021-07-29 21:45:11 +02:00
js feat(unstable): clean environmental variables for subprocess (#11571) 2021-08-04 21:47:43 +02:00
ops feat(unstable): clean environmental variables for subprocess (#11571) 2021-08-04 21:47:43 +02:00
build.rs feat(extensions/fetch): extend init options (#11528) 2021-07-28 04:34:08 +05:30
Cargo.toml chore: format toml files internally (#11563) 2021-08-02 10:19:27 -04:00
colors.rs chore: upgrade Rust to 1.54.0 (#11554) 2021-07-30 15:03:41 +02:00
errors.rs refactor(web): use encoding_rs for text encoding (#10844) 2021-06-05 23:10:07 +02:00
fs_util.rs fix: do not panic on not found cwd (#10238) 2021-04-21 17:52:00 +02:00
inspector_server.rs fix: panic for non-WS connections to inspector (#11466) 2021-07-20 15:41:36 +02:00
js.rs refactor: unify JavaScript script execution method (#11043) 2021-06-22 01:45:41 +02:00
lib.rs refactor: deno_http op crate (#11335) 2021-07-12 12:44:49 +02:00
metrics.rs Remove various unnecessary allow(clippy) declarations (#10971) 2021-06-15 19:22:28 +02:00
permissions.rs chore: upgrade Rust to 1.54.0 (#11554) 2021-07-30 15:03:41 +02:00
README.md chore: fix decendents in runtime readme (#9718) 2021-03-08 13:23:46 +01:00
tokio_util.rs upgrade: tokio 1.0 (#8779) 2021-01-11 23:50:02 -08:00
web_worker.rs chore(core): use oneshot channel in mod_evaluate() (#11556) 2021-07-30 13:36:43 +02:00
worker.rs chore(core): use oneshot channel in mod_evaluate() (#11556) 2021-07-30 13:36:43 +02: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.