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 🙏

© 2026 – Pkg Stats / Ryan Hefner

ski-parker

v0.4.0

Published

Automated HONK-based ski resort parking reservation CLI

Readme

ski-parker

npm CI codecov Beta

Beta Software: This tool is under active development. Please report any issues using ski-parker bug or by opening an issue.

CLI tool that monitors ski resort parking availability on HONK-powered sites and notifies you when a spot opens up so you can book manually.

HONK is the parking reservation platform used by many ski resorts across North America. This tool watches the calendar for availability changes and sends desktop notifications when parking opens up.

Supported Resorts

Validated against all 13 HONK Reserve 'N Ski portals:

| Resort | Location | URL | Type | |--------|----------|-----|------| | Stevens Pass | WA | reservenski.parkstevenspass.com | Single-lot | | Northstar | CA | reservenski.parknorthstar.com | Multi-lot | | Heavenly | CA/NV | reservenski.parkheavenly.com | Single-lot | | Kirkwood | CA | reservenski.parkkirkwood.com | Single-lot | | Palisades Tahoe | CA | reservenski.parkpalisadestahoe.com | Multi-lot | | Breckenridge | CO | reservenski.breckpark.com | Multi-lot | | A-Basin | CO | reservenski.parkabasin.com | Multi-lot | | Park City Surface | UT | reserve.parkatparkcitymountain.com | Single-lot | | Park City Garage | UT | reserve-garage.parkatparkcitymountain.com | Single-lot | | Solitude | UT | reservenski.parksolitude.com | Single-lot | | Brighton | UT | reservenski.parkbrightonresort.com | Single-lot | | Alta | UT | reserve.altaparking.com | Single-lot | | Whistler Blackcomb | BC | reservenski.whistlerblackcombparking.com | Multi-lot |

See docs/honk-resorts-research.md for detailed resort information including pricing, carpool rules, and edge cases.

Installation

# Run directly with npx (no install needed)
npx ski-parker

# Or install globally
npm install -g ski-parker

Quick Start

# 1. Configure your resort and lot preferences
ski-parker setup

# 2. Authenticate (one-time setup)
ski-parker auth

# 3. Watch for availability — get notified when a spot opens
ski-parker watch --date 2026-02-15

When a spot becomes available, you'll get a desktop notification. Then head to the resort's HONK site to book manually.

Commands

ski-parker setup

Interactive configuration for your resort URL and lot preferences.

ski-parker auth

Opens a browser window for manual login to HONK. Saves session for future use.

ski-parker watch

Monitor a date for parking availability. Sends a desktop notification when a spot opens.

ski-parker watch --date 2026-02-15 \
  [--lot "Zone A"] \
  [--interval 60] [--jitter 20] \
  [--no-notify] [--no-sound] \
  [--headed] [--verbose]

ski-parker bug

Open a pre-filled GitHub issue to report a bug.

ski-parker bug              # Opens browser with issue form
ski-parker bug --no-open    # Prints URL instead

Options

| Option | Description | |--------|-------------| | -d, --date <date> | Date to watch (YYYY-MM-DD) | | -l, --lot <lots...> | Lot preference(s) for multi-lot resorts | | -i, --interval <sec> | Poll interval in seconds (default: 60) | | -j, --jitter <sec> | Random jitter added to interval (default: 20) | | --no-notify | Disable desktop notifications | | --no-sound | Disable sound notifications | | --headed | Show browser window | | -v, --verbose | Enable verbose logging |

Multi-Lot Resorts

Some resorts (like Whistler) have multiple parking zones. Use --lot to specify your preference:

ski-parker watch --date 2026-02-15 --lot "CREEKSIDE" "UPPER LOTS"

The tool will check the preferred lot first.

Configuration

Config file: ~/.ski-parker/config.json

{
  "resortUrl": "https://reservenski.parkstevenspass.com",
  "lotPreferences": ["CREEKSIDE", "UPPER LOTS"],
  "pollInterval": 60,
  "jitter": 20
}

Troubleshooting

Session expired

Run ski-parker auth again to re-authenticate.

Selectors not working

The HONK site may have changed. Update selectors in src/lib/scraper.ts.

Lot not found

Run ski-parker setup to discover available lots for your resort.

Reporting Issues

Found a bug or have a feature request?

# Easiest way - opens browser with system info pre-filled
ski-parker bug

Or open an issue directly on GitHub.

Development

Testing

# Unit tests
npm test

# E2E tests with mock HONK server
npm run test:e2e

# Validate selectors against all real HONK sites
npx tsx scripts/validate-selectors.ts

Project Structure

src/
  lib/
    selectors.ts    # Pure selector functions (unit tested)
    scraper.ts      # Browser automation (e2e tested)
    config.ts       # Configuration management
    utils.ts        # Utility functions
tests/
  lib/              # Unit tests
  e2e/              # End-to-end tests
  mock-server/      # Mock HONK server for e2e
scripts/
  validate-selectors.ts  # Test selectors against real sites