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

dine-at-disney

v1.1.1

Published

A CLI tool that checks for dining availability at Disneyland and California Adventure park restaurants.

Downloads

13

Readme

dine-at-disney 🍽 🎆

A CLI tool for checking dining reservation availability at Disneyland / California Adventure.

Features

  • See a list of all restaurants that offer reservations.
  • Search for availability across all restaurants, or narrow your query to specific places.
  • Continually monitor a restaurant for availability, and receive email/push notifications when an opening is found.

Installation

npm install -g dine-at-disney

Please note: as of writing, this package utilizes Node v18's global fetch API, and as such, Node v18 is required.

Usage

List restaurants and their IDs

dine-at-disney list

Sample output:

Listing places...
| Name                                                   | ID       |
| ------------------------------------------------------ | -------- |
| Blue Bayou Restaurant                                  | 354099   |
| Cafe Orleans                                           | 354117   |
| Carnation Cafe                                         | 354129   |
| Carthay Circle Lounge - Alfresco Dining                | 16588263 |
| Carthay Circle Restaurant                              | 16515009 |
| Catal Restaurant                                       | 354132   |
| Disney Princess Breakfast Adventures                   | 19140685 |
...

Search for openings at any restaurant

dine-at-disney search --date yyyy-mm-dd --party 2

Sample output:

Checking for tables for 2 people on 2023-09-20...
Found some offers on 2023-09-20:
| Name                               | ID       | Available Times           |
| ---------------------------------- | -------- | ------------------------- |
| Catal Restaurant                   | 354132   | 5:00 PM                   |
| GCH Craftsman Bar                  | 19343532 | 6:45 PM, 8:00 PM          |
| Goofy's Kitchen                    | 354261   | 7:35 PM                   |
| La Brea Bakery Cafe                | 354327   | 2:30 PM                   |
| River Belle Terrace                | 354450   | 5:30 PM, 7:05 PM, 2:30 PM |
| Splitsville Luxury Lanes™ – Dining | 18735825 | 7:00 PM, 2:30 PM          |
| Storytellers Cafe                  | 354474   | 6:50 PM, 7:20 PM, 7:40 PM |
| Tortilla Jo's                      | 354528   | 6:30 PM, 7:00 PM, 2:00 PM |

Search for openings at a specific restaurant

This will also use notification settings below if configured

dine-at-disney search --date 2023-12-14 --party 2 --ids 19013078

Sample output:

Checking for tables for 2 people on 2023-12-14 for Lamplight Lounge...
No offers found for Lamplight Lounge. Checking again in 60s. 1 total attempts.

Search for multiple specific openings

This will also use notification settings below if configured

dine-at-disney search --date 2023-12-14 --party 2 --ids "354261,354450"

Sample output:

Checking for tables for 2 people on 2023-12-15 for Goofy's Kitchen, River Belle Terrace...
Found offers at 20:20 for Goofy's Kitchen. Checking again in 60s. 1 total attempts.
No offers found for River Belle Terrace. Checking again in 60s. 1 total attempts.

Notifications

Mail alerts

See .env.example for info on the required fields for email alerting.

Copy those values into your own .env file.

Pushover alerts

For more information see: https://pushover.net/

This service is a one time $5 fee forever. You can purchase a Pushover API token here: https://pushover.net/pricing. Once setup you will get instant push notifications to your device when a table opens.

Additionally you can click the reserve link in the push notification to reserve the table.

Push notification example

See .env.example for info on the required fields for email alerting.

Copy those values into your own .env file.