buckle-scraper
v1.0.2
Published
A library for scraping lists of items from Buckle.com's online clothing store.
Downloads
25
Readme
#Overview
This is a library for scraping Buckle's online clothing store.
It currently only has one function, getItems(), which calls back with an array of items that match your criteria.
#Example
var buckle = require('buckle-scraper');
buckle.getItems('mens', 'shirts', 'x-large', 'price_asc', 1, function(error, items) {
if (error) {
console.log(error);
return;
}
console.log(items);
});