node-es6-starter

Scraper for https://chope.co

Usage no npm install needed!

<script type="module">
  import nodeEs6Starter from 'https://cdn.skypack.dev/node-es6-starter';
</script>

README

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

})();