Skip to content

Instantly share code, notes, and snippets.

@gnesher
Created June 5, 2017 14:01
Show Gist options
  • Save gnesher/d45495bfeec5e53bfb38da3270c93d23 to your computer and use it in GitHub Desktop.
Save gnesher/d45495bfeec5e53bfb38da3270c93d23 to your computer and use it in GitHub Desktop.
cheerio question
const $ = cheerio.load(body),
cards = $("div[class*=card__product___apps]")
cards.each((i, card) => {
console.log(card.children("div[class*=author__product___apps]").text);
console.log(card.children("a").attribs.href);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment