I have a very long HTML which i want to scrap using Cheerio.js. I would like to do it in a more efficient way than just load the entire HTML while i need to scrap only 1 specific tag out of it.
The tag is:
<a class="uniqueClass" .....>
... here there might be multiple other tags.
</a>
Please note that i do NOT need help with selecting that tag with Cheerio and do my thing with it. I only want a way to load it more efficiency instead of loading the entire large HTML.
- Efficiency is very important.
Thanks for the help!