deno_webidl

Crates.iodeno_webidl
lib.rsdeno_webidl
version0.217.0
created_at2021-03-12 20:55:43.67695+00
updated_at2025-09-24 19:53:16.220673+00
descriptionWebIDL implementation for Deno
homepage
repositoryhttps://github.com/denoland/deno
max_upload_size
id367915
size103,967
(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() in the extensions field of your RuntimeOptions

Commit count: 14349

cargo fmt