deno_webidl

Crates.iodeno_webidl
lib.rsdeno_webidl
version0.160.0
sourcesrc
created_at2021-03-12 20:55:43.67695
updated_at2024-07-12 20:12:04.222173
descriptionWebIDL implementation for Deno
homepage
repositoryhttps://github.com/denoland/deno
max_upload_size
id367915
size48,197
(denobot)

documentation

README

deno_webidl

This crate implements WebIDL for Deno. It consists of infrastructure to do ECMA -> WebIDL conversions.

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

Usage Example

From javascript, include the extension's source, and assign the following to the global scope:

import * as webidl from "ext:deno_webidl/00_webidl.js";
Object.defineProperty(globalThis, webidl.brand, {
  value: webidl.brand,
  enumerable: false,
  configurable: true,
  writable: true,
});

Then from rust, provide init_webidl::init_webidl::init_ops_and_esm() in the extensions field of your RuntimeOptions

Commit count: 11748

cargo fmt