deno/ext/console
Richard Carson 257f027325
docs: Add documentation to a subset of available extensions (#24138)
I was able to use my experience with some of the Deno extensions to
flesh out their documentation a bit

I've provided docs for the following:
- web
- fetch
- net
- webidl
- url
- io
- crypto
- console

---------

Signed-off-by: Richard Carson <Rscarson@rogers.com>
2024-06-18 00:07:48 +02:00
..
01_console.js fix(console): add missing AssertionError to js (#22358) 2024-06-03 12:01:43 +02:00
Cargo.toml chore: forward v1.44.2 release commit to main (#24194) 2024-06-13 01:57:22 +00:00
internal.d.ts chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
lib.deno_console.d.ts docs: update categories to match new planned sitemap (#23677) 2024-05-05 18:56:55 -07:00
lib.rs fix: strict type check for cross realms (#21669) 2024-01-04 09:42:38 +05:30
README.md docs: Add documentation to a subset of available extensions (#24138) 2024-06-18 00:07:48 +02:00

deno_console

This crate implements the Console API.

Spec: https://console.spec.whatwg.org/

Usage Example

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

Provided ops

Following ops are provided, which can be accessed through Deno.ops:

  • op_preview_entries