1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 12:58:54 -05:00
denoland-deno/runtime
Aaron O'Mullan 44511e4f33
feat(runtime): give OS errors .code attributes (#12591)
This adds `.code` attributes to errors returned by the op-layer, facilitating classifying OS errors and helping node-compat.

Similar to Node, these `.code` attributes are stringified names of unix ERRNOs, the mapping tables are generated by [tools/codegen_error_codes.js](https://gist.github.com/AaronO/dfa1106cc6c7e2a6ebe4dba9d5248858) and derived from libuv and rust's std internals
2021-11-04 16:44:34 +01:00
..
examples feat(runtime): allow passing extensions via Worker options (#12362) 2021-10-08 17:03:49 +02:00
js feat(ext/web): BYOB support for ReadableStream (#12616) 2021-11-03 10:47:40 +01:00
ops chore: update to Rust edition 2021 (#12578) 2021-11-02 10:03:37 -04:00
build.rs feat(ext/fetch): support fetching local files (#12545) 2021-11-01 15:29:46 +11:00
Cargo.toml feat(runtime): give OS errors .code attributes (#12591) 2021-11-04 16:44:34 +01:00
colors.rs refactor: Remove duplicated colors.rs file (#11990) 2021-09-12 12:04:17 -04:00
errors.rs feat(runtime): improve error messages of runtime fs (#11984) 2021-10-11 15:21:18 +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 refactor: cleanup Inspector and InspectorServer implementations (#11837) 2021-08-25 13:39:23 +02:00
js.rs refactor: unify JavaScript script execution method (#11043) 2021-06-22 01:45:41 +02:00
lib.rs refactor(metrics): move to core (#12386) 2021-10-10 17:20:30 +02:00
permissions.rs chore: fix flaky permissions tests on windows (#12552) 2021-10-26 11:49:07 -04:00
README.md chore: fix decendents in runtime readme (#9718) 2021-03-08 13:23:46 +01:00
tokio_util.rs refactor: Remove unused code (#12210) 2021-09-25 00:35:35 +02:00
web_worker.rs fix: Deno.emit crashes with BorrowMutError (#12627) 2021-11-03 09:27:36 -04:00
worker.rs feat(ext/fetch): support fetching local files (#12545) 2021-11-01 15:29:46 +11:00
worker_bootstrap.rs refactor(runtime): Worker bootstrap options (#12299) 2021-10-05 22:41:14 +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.