@chasidic/scraper
v0.6.4
Published
```typescript import { Scraper } from '@chasidic/scraper';
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);
} ();