This val scrapes a website to extract all the URLs from anchor (<a>) tags using the cheerio library.
<a>
cheerio
Create valimport scrapeWebsite from 'val:damidina.cheerioScraper'; const urls = await scrapeWebsite('https://example.com'); console.log(urls);