Top "Cheerio" questions

Questions about Cheerio, an implementation of core jQuery designed specifically for the server.

Is it possible to scrape a React website (Instagram) with Cheerio?

I'm trying to scrape Instagram (built with React) with Node.js / Cheerio. Debugging the document shows an object returned, but …

node.js web-scraping reactjs cheerio
Cannot read property 'parent' of undefined - Node.js

I was trying to employ superagent and cheerio to crawl data from kijiji for learning, while I got an error …

javascript node.js cheerio superagent
How to remove <div> and <br> using Cheerio js?

I have the following html that I like to parse through Cheerios. var $ = cheerio.load('<html><…

javascript node.js cheerio
Node.js Cheerio parser breaks UTF-8 encoding

I parse my request with Cheerio like this: var url = http://shop.nag.ru/catalog/16939.IP-videonablyudenie-OMNY/16944.IP-kamery-OMNY-c-vario-obektivom/16704.OMNY-1000-PRO; request.…

node.js encoding cheerio
Iterating over TR in a table with Cheerio.js

I'm having issues using the selectors that are available for Cheerio.js that I use on my Node server. The …

jquery node.js cheerio
.each and callbacks

I am using request and cheerio node modules to create get some data out of a website. I'd like to …

javascript node.js asynchronous cheerio
BeautifulSoup like scraper for nodejs

I am former python developer and I have used BS4 for couple of years Now I am developing with node …

javascript node.js web-scraping beautifulsoup cheerio
nodejs cheerio selecting child element inside an each loop

I'm trying to select the strong a tags that's inside the .info class $(".info").each(function(i, item){ console.log($(…

javascript jquery node.js cheerio
Get title of a page with cheerio

I'm trying to get the title tag of a url with cheerio. But, I'm getting empty string values. This is …

javascript node.js express cheerio
Get text in parent without children using cheerio

I am trying to extract just the content of a div - without any of the children of that div …

jquery html node.js cheerio