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);
} ();
```typescript import { Scraper } from '@chasidic/scraper';
<script type="module">
import chasidicScraper from 'https://cdn.skypack.dev/@chasidic/scraper';
</script>
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);
} ();