241 breaking releases

new 0.277.0 Apr 18, 2024
0.275.0 Apr 15, 2024
0.272.0 Mar 21, 2024
0.240.0 Dec 28, 2023
0.0.1 Sep 13, 2019

#129 in Web programming

Download history 2853/week @ 2023-12-23 8921/week @ 2023-12-30 11017/week @ 2024-01-06 10686/week @ 2024-01-13 15470/week @ 2024-01-20 11389/week @ 2024-01-27 13218/week @ 2024-02-03 14834/week @ 2024-02-10 9064/week @ 2024-02-17 16945/week @ 2024-02-24 13221/week @ 2024-03-02 16187/week @ 2024-03-09 14668/week @ 2024-03-16 16825/week @ 2024-03-23 22329/week @ 2024-03-30 8399/week @ 2024-04-06

65,453 downloads per month
Used in 128 crates (107 directly)

MIT license

1MB
32K SLoC

Deno Core Crate

crates docs

The main dependency of this crate is rusty_v8, which provides the V8-Rust bindings.

This Rust crate contains the essential V8 bindings for Deno's command-line interface (Deno CLI). The main abstraction here is the JsRuntime which provides a way to execute JavaScript.

The JsRuntime implements an event loop abstraction for the executed code that keeps track of all pending tasks (async ops, dynamic module loads). It is user's responsibility to drive that loop by using JsRuntime::run_event_loop method - it must be executed in the context of Rust's future executor (eg. tokio, smol).

Rust functions can be registered in JavaScript using the deno_core::extension! macro. A conventional way to write ops is using the deno_ops crate.

Documentation for this crate is thin at the moment. Please see hello_world.rs and eval_js_value.rs as examples of usage.

TypeScript support and lots of other functionality are not available at this layer. See the CLI for that.

Dependencies

~92MB
~2M SLoC