buckle-scraper

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

Usage no npm install needed!

<script type="module">
  import buckleScraper from 'https://cdn.skypack.dev/buckle-scraper';
</script>

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