Attributes
Extremely Popular
Repository
Current version released
5 years ago
Dependencies
github.com
Versions
- v0.1.56Latest
 - v0.1.55
 - v0.1.54
 - v0.1.53
 - v0.1.52
 - v0.1.51
 - v0.1.50
 - v0.1.49
 - v0.1.48
 - v0.1.47
 - v0.1.46
 - v0.1.45
 - v0.1.44
 - v0.1.43
 - v0.1.42
 - v0.1.41-alpha-artifacts
 - v0.1.41
 - v0.1.40
 - v0.1.39
 - v0.1.38
 - v0.1.37
 - v0.1.36-alpha
 - v0.1.35-alpha
 - v0.1.35-alpha-artifacts
 - v0.1.34-alpha
 - v0.1.33-alpha
 - v0.1.32-alpha
 - v0.1.31-alpha
 - v0.1.30-alpha
 - v0.1.29-alpha
 - v0.1.28-alpha
 - v0.1.27-alpha
 - v0.1.26-alpha
 - v0.1.25-alpha
 - v0.1.24-alpha
 - v0.1.23-alpha
 - v0.1.23-alpha-artifacts
 - v0.1.22-alpha
 - v0.1.21-alpha
 - v0.1.20-alpha
 - v0.1.19-alpha
 - v0.1.18-alpha
 - v0.1.17-alpha
 - v0.1.16-alpha
 - v0.1.15-alpha
 - v0.1.14-alpha
 - v0.1.13-alpha
 - v0.1.12-alpha
 - v0.1.11-alpha
 - v0.1.10-alpha
 - v0.1.9-alpha
 - v0.1.8-alpha
 - v0.1.7-alpha
 - v0.1.6-alpha
 - v0.1.5-alpha
 - v0.1.4-alpha
 - v0.1.3-alpha2
 - v0.1.3-alpha
 - v0.1.2-alpha5
 - v0.1.2-alpha4
 - v0.1.2-alpha3
 - v0.1.2-alpha2
 - v0.1.2-alpha
 - v0.1.0-alpha2
 
Deno DOM
An implementation of the browser DOM—primarily for SSR—in Deno. Implemented with Rust, WASM, and obviously, Deno/TypeScript.
Example
import { DOMParser, Element } from "https://deno.land/x/deno_dom@v0.1.2-alpha2/deno-dom-wasm.ts";
const doc = new DOMParser().parseFromString(`
  <h1>Hello World!</h1>
  <p>Hello from <a href="https://deno.land/">Deno!</a></p>
`, "text/html")!;
const p = doc.querySelector("p")!;
console.log(p.textContent); // "Hello from Deno!"
console.log(p.childNodes[1].textContent); // "Deno!"
p.innerHTML = "DOM in <b>Deno</b> is pretty cool";
console.log(p.children[0].outerHTML); // "<b>Deno</b>"Deno DOM has two backends, WASM and native using Deno native plugins. Both 
APIs are identical, the difference being only in performance. The WASM 
backend works with all Deno restrictions, but the native backend requires 
the --unstable --allow-plugin flags. You can switch between them by 
importing either deno-dom-wasm.ts or deno-dom-native.ts.
Deno DOM is still under development, but is fairly usable for basic HTML manipulation needs.
Goals
- HTML parser in Deno
 - Fast
 - Mirror most* supported DOM APIs as closely as possible
 - Provide specific APIs in addition to DOM APIs to make certain operations more efficient, like controlling Shadow DOM (see Open Questions)
 - Use cutting-edge JS features like private class members, optional chaining, etc
 
Non-Goals
- Headless browser implementation
 - Ability to run JS embedded in documents (
<script>tags,onload, etc) - Parse CSS or JS (they’re just text, but this may be supported in the future for CSSOM)
 - Support older (or even not so old) JS engines. In other words, there will be no support of transpilation to ES5, no support of polyfills, etc
 - Support special functionality of obsolet HTML elements (
<marquee>, etc) 
Credits
- html5ever developers for the HTML parser
 - nwsapi developers for the selector parser