| Crates.io | deno_webidl |
| lib.rs | deno_webidl |
| version | 0.217.0 |
| created_at | 2021-03-12 20:55:43.67695+00 |
| updated_at | 2025-09-24 19:53:16.220673+00 |
| description | WebIDL implementation for Deno |
| homepage | |
| repository | https://github.com/denoland/deno |
| max_upload_size | |
| id | 367915 |
| size | 103,967 |
This crate implements WebIDL for Deno. It consists of infrastructure to do ECMA -> WebIDL conversions.
Spec: https://webidl.spec.whatwg.org/
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