Skip to content

Instantly share code, notes, and snippets.

@tsq
Created April 8, 2015 06:42
Show Gist options
  • Save tsq/88373c5f77586d8f85b9 to your computer and use it in GitHub Desktop.
Save tsq/88373c5f77586d8f85b9 to your computer and use it in GitHub Desktop.
crawl
var request = require("request");
var fs = require("fs");
var cheerio = require('cheerio');
var url = '';
request(url, function (err, res, body) {
if (err) {
return console.log(err);
}
try {
var $ = cheerio.load(body);
} catch (e) {
callback(e);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment