150 breaking releases

new 0.155.0 Apr 16, 2024
0.153.0 Apr 11, 2024
0.151.0 Mar 28, 2024
0.137.0 Dec 21, 2023
0.5.0 Dec 30, 2020

#1447 in Web programming

Download history 455/week @ 2023-12-23 500/week @ 2023-12-30 470/week @ 2024-01-06 824/week @ 2024-01-13 637/week @ 2024-01-20 1062/week @ 2024-01-27 718/week @ 2024-02-03 651/week @ 2024-02-10 1025/week @ 2024-02-17 1326/week @ 2024-02-24 1104/week @ 2024-03-02 1043/week @ 2024-03-09 781/week @ 2024-03-16 781/week @ 2024-03-23 1212/week @ 2024-03-30 556/week @ 2024-04-06

3,473 downloads per month
Used in 25 crates (19 directly)

MIT license

5.5MB
141K SLoC

JavaScript 51K SLoC // 0.1% comments Rust 49K SLoC // 0.2% comments TypeScript 41K SLoC // 0.2% comments

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 the 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.

Dependencies

~231MB
~4.5M SLoC