0.1.1 • Published 5 years ago

node-scraper-chope v0.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

node-scraper-chope

  • A scraper that extracts restaurant and offer data from https://chope.co .
  • Unofficial API

Usage

Scrape a single offer page

Use the following:

import ChopeScraper from 'node-scraper-chope';

(async () => {

    const entries = await ChopeScraper.scrapeOffers({
      page: 2
    });

})();