scrapeit
v0.0.2
Published
Scrape webpages with ease (htmlparser+soupselect+request)
Downloads
10
Readme
node-scrapeit
Don't think. Scrape.
Simple boilerplate for soupselect + htmlparser + request.
Look how easy this is
var scrape = require('scrapeit')
scrape("http://google.com", function(err, o, dom){
o("p").forEach(function(p){
// scrape all p tags
});
});