Playground
Try dawm in your browser — parse HTML and explore the DOM interactively.
Interactive Playground
Try dawm directly in your browser! The playground below lets you write HTML, parse it with dawm’s WebAssembly-powered engine, and explore the resulting DOM tree.
Visit the dawm Playground → to get started.
What You Can Do
- Parse HTML — Enter any HTML string and see it parsed in real-time.
- Explore the DOM — View the full DOM tree structure.
- Run Queries — Test CSS selectors with
querySelectorandquerySelectorAll. - Inspect Elements — View tag names, attributes, text content, and more.
- Serialize — See the serialized output of the parsed document.
How It Works
The playground loads dawm’s WebAssembly module directly in your browser. The same parser that runs on your server runs right here in the browser — no server round-trips needed.
Browser → dawm WASM module → Parse HTML → DOM tree → Interactive explorer
This means you can test parsing behavior, experiment with queries, and validate your use cases without writing a single line of server code.