1.0.2 • Published 8 years ago

buckle-scraper v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
8 years ago

#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);
});
1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago