Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

buckle-scraper

josh1billion1ISC1.0.2

A library for scraping lists of items from Buckle.com's online clothing store.

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