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

@hraza01/skyhook

v1.1.3

Published

Interactive CLI for Cloud Composer DAG deployment

Readme

Skyhook 🪂

Skyhook is a robust, interactive CLI tool for deploying Airflow DAGs to Google Cloud Composer. It replaces legacy bash scripts with a modern Node.js interface featuring Git validation, synchronized spinners, and a professional UI.

About

Use Case: Skyhook is optimized for development environments and teams where a full CI/CD pipeline is not yet established. While automated CI/CD remains the industry standard for production deployments, this utility provides a safe, structured, and efficient alternative for manual deployments, helping smaller teams iterate faster without sacrificing validation or safety.

Features

  • 🛡️ Safety First: Automatically validates that your DAG folder is a Git repository, is on the main branch, and is fully synced with remote.
  • ✨ Modern UI: Built with @clack/prompts for a minimal, clean aesthetic.
  • 🚀 Live Feedback: Shows real-time file upload progress from gsutil.
  • 🔌 Cross-Platform: Works seamlessly on macOS, Linux, and Windows (WSL).

Prerequisites

  • Node.js: v20.5.0 or higher
  • Google Cloud SDK: gsutil must be installed and authenticated.
  • Git: Must be installed and available in the PATH.
  • Environment: You must be inside your Composer's local Airflow development environment (project root) to run this tool.

Installation

Install globally via NPM:

$ npm install -g @hraza01/skyhook

Updating

To update to the latest version:

$ npm update -g @hraza01/skyhook

Configuration

Skyhook requires two environment variables to function. It will exit if these are not provided.

| Variable | Description | | :------------------ | :--------------------------------------------- | | GCS_BUCKET_NAME | The name of your Composer GCS bucket. | | COMPOSER_URL_BASE | The base URL for your environment's webserver. |

Usage

Option 1: VS Code Task (Recommended)

  1. Copy the example task configuration from vscode-example/tasks.json to your project's .vscode/tasks.json.
  2. Update the env variables in tasks.json.
  3. Run the task "Deploy DAG to Cloud Composer".

Option 2: CLI (Manual)

Navigate to your Airflow project root (where the dags/ folder is) and run:

$ export GCS_BUCKET_NAME="<your-bucket-name>"
$ export COMPOSER_URL_BASE="<your-composer-webserver-url-base>"

$ skyhook

Project Structure

For a detailed overview of the project structure and module descriptions, see:

📄 Project Structure Documentation

Thank You

Thank you for your attention and for taking the time to read the documentation! We hope this tool helps streamline your workflow.