Cheerio & Moment.js: Web Data Scraping
What is cheerio?
It is a javascript package used to parse and manipulate HTML and XML documents in a jQuery-like manner but without the overhead of involving a DOM. Simple example -
const cheerio = require('cheerio');
const $ = cheerio.load('<h2 clas...
aashman.hashnode.dev4 min read