Crates.io | deno_console |
lib.rs | deno_console |
version | 0.177.0 |
source | src |
created_at | 2021-03-12 21:01:57.003854 |
updated_at | 2024-11-10 04:41:02.587813 |
description | Implementation of Console API for Deno |
homepage | |
repository | https://github.com/denoland/deno |
max_upload_size | |
id | 367924 |
size | 110,028 |
This crate implements the Console API.
Spec: https://console.spec.whatwg.org/
From javascript, include the extension's source, and assign a console to the global scope:
import * as console from "ext:deno_console/01_console.js";
Object.defineProperty(globalThis, "console", {
value: new console.Console((msg, level) =>
globalThis.Deno.core.print(msg, level > 1)
),
enumerable: false,
configurable: true,
writable: true,
});
Then from rust, provide deno_console::deno_console::init_ops_and_esm()
in the
extensions
field of your RuntimeOptions
Following ops are provided, which can be accessed through Deno.ops
: