npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sitedish-scraper

v1.2.0

Published

Scrape SiteDish customer website and get all products

Downloads

18

Readme

Sitedish-scraper

npm

About

Sitedish-scraper scrapes the SiteDish consumer restaurant website to get all categories and dishes. The resulting list is returned in JSON format.

Developed in collaboration with a Sushi 81. Delivery and take-away restaurant of sushi and Poke Bowls. Located in Nijverdal, the Netherlands. https://sushi81.nl

Install

You can either install it as local dependency to a project, or install it globally.

To install sitedish-scraper globally:

$ npm install -g sitedish-scraper
    

Once installed globally, you can run it on the command line from any location.

Usage Command Line

To list all current dishes and categories for example, execute sitedish-scraper with the --url option. Optionally add the --verbose flag for extra verbosity of logging.

$ sitedish-scraper --url <public-website> [--verbose]

$ sitedish-scraper --url https://bestellen.sushi81.nl
    

For example, the output of the command above looks like this:

"categories": [
    {
        "category": "Poke bowl",
        "categoryDescription": "Poké (spreek uit als pokay) is een traditioneel gerecht uit Hawaï, waar verse vis en groente centraal staat. Een Poké bowl bestaat uit vis of vlees, gemarineerd in een kom met sushirijst, groente en eventueel andere toppings zoals zeewier. Poké bowl is de populaire culinaire trend van dit moment!"
    }
],        
"products": [
    {
        "id": 1,
        "number": "1",
        "name": "Poké Bowl kip yakitori",
        "price": 715,
        "categorie": "Poke bowl",
        "description": "Kip op Japanse wijze, edamame, komkommer, wakame en sushirijst",
        "choices": [ {
            "id": 45,
            "name": "Normaal",
            "price": 0 
            }, 
            {
            "id": 46,
            "name": "Groot",
            "price": 580
        } ]
    },
    {
        "id": 2,
        "number": "2",
        "name": "Poké Bowl ossenhaas",
        "price": 895,
        "categorie": "Poke bowl",
        "description": "Kort geroosterde ossenhaas in teriyaki, edamame, komkommer, wakame en sushirijst"
    }
]

Usage in Code

We assume npm is installed and the project already contains a package.json file. If not, then first initialize the project.

$ npm init
  

Install sitedish-scraper as node module and save it to package.json:

$ npm install sitedish-scraper --save

Add sitedish-scraper to your program with require and call scrape() with the SiteDish website URL encapsulated within a configuration object:

const sitedishScraper = require('sitedish-scraper');
const options = {
    url: 'https://bestellen.sushi81.nl',
    verbose: false
};
sitedishScraper.scrape(options)
    .then(products => {
        // Pretty print products to console.
        console.log(JSON.stringify({products}, null, 4));
    })
    .catch(error => {
        console.log('ERROR: Failed to load the products:');
        console.log(error);
    });

Development

Code style

JavaScript project code style:

https://github.com/standard/standard