deno_core icon indicating copy to clipboard operation
deno_core copied to clipboard

The core engine at the heart of Deno

Results 126 deno_core issues
Sort by recently updated
recently updated
newest added

Related issue: https://github.com/denoland/deno_core/issues/885 Example usage: https://github.com/kurtexdev/kurtex/blob/main/crates/kurtex_core/src/deno/runtime.rs#L110 Look at the tests to understand in more detail what the functionality is about. The point is to update existing V8 modules with the...

```rust async fn run_js(file_path: &str) -> Result { let main_module = deno_core::resolve_path(file_path, env::current_dir()?.as_path())?; let mut js_runtime = deno_core::JsRuntime::new(deno_core::RuntimeOptions { module_loader: Some(Rc::new(TsModuleLoader)), startup_snapshot: Some(RUNTIME_SNAPSHOT), extensions: vec![runjs::init_ops()], ..Default::default() }); fs::write(file_path, "console.log(\"1\")")?; //...

Hi all, I'm one of the people working on [Tree Borrows](https://www.ralfj.de/blog/2023/06/02/tree-borrows.html), a candidate for a successor for Stacked Borrows. Stacked Borrows (and similarly Tree Borrows) of course aims to make...

This commit makes the following refinements for `extension!` macro: - Improve the doc comments to cover all the fields available now (i.e. `external_references` and `customizer`) - Fix the wrong field...