I have a few html files on my harddrive that I\'d like to use jquery on to extract data from. Is this possible to do using cheerio? I\'ve tried giving cheerio the local pa
The input is an html string, so you need to read the html content yourself:
var fs = require('fs'); cheerio.load(fs.readFileSync('path/to/file.html'));