A fast javascript dom parser for rust built for web scraping.
cargo add jsdom
```rust use std::collections::HashSet; use jsdom::extract::extract_links;
const SCRIPT: &str = r###" var ele = document.createElement('a'); ele.href = 'https://a11ywatch.com'; "###;
fn parselinks() {
// build tree with elements created from the nodes todo
let links: HashSet
assert!(links.contains("https://a11ywatch.com"))
} ```
Currently the package will rollout features that are most important for web scraping.
Intro stage can handle elements created in statements and expressions.