@chasidic/scraper

```typescript import { Scraper } from '@chasidic/scraper';

Usage no npm install needed!

<script type="module">
  import chasidicScraper from 'https://cdn.skypack.dev/@chasidic/scraper';
</script>

README

@chasidic/scraper

import { Scraper } from '@chasidic/scraper';

!async function () {
    let scraper = new Scraper({ cache: '/tmp/cache/' });
    let tree = await scraper.tree('http://example.com');
    console.log(tree);
} ();