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

@orchlane/the-configurator

v0.1.0

Published

Migrate Check Point security configurations to Palo Alto Networks (Panorama or standalone PAN-OS). Single-binary migration engine, CLI, and local web UI — runs entirely inside your environment.

Readme

@orchlane/the-configurator

Migrate Check Point security configurations to Palo Alto Networks (Panorama or standalone PAN-OS). Single-binary migration engine, CLI, and local web UI — runs entirely inside your own environment. No SaaS dependency, no data leaves your network unless you explicitly opt an LLM call into it.

Install / run

npx @orchlane/the-configurator@latest setup

setup runs a first-run health check (workspace, TLS cert, loopback bind, credential storage, LLM availability) and writes your local configuration. Re-run it any time — it's safe and idempotent.

Or install it on PATH:

npm install -g @orchlane/the-configurator
the-configurator setup

Quick start

the-configurator plan      # interactive wizard → a migration plan
the-configurator run       # execute the plan
the-configurator ui        # local web UI (dashboard, review queue, reports)
the-configurator doctor    # re-run the health checks without writing anything
the-configurator --help    # full command list

Supported platforms

| OS | Architecture | |---|---| | macOS | Apple Silicon (arm64), Intel (x64) | | Windows | x64, arm64 |

npm install fetches only the one prebuilt binary that matches your machine (os/cpu in package.json make npm skip the other three) — about 20-25 MB, not four times that.

No other platform is supported yet. On an unsupported platform, or if the matching platform package didn't install (--omit=optional and similar), the CLI prints exactly which platform it detected and how to fix it, rather than failing silently.

Why this install path

  • No postinstall script, no download at install time. The binary ships inside the npm tarball itself, so npm ci --ignore-scripts and locked-down proxies both work — nothing reaches out to GitHub after npm install.
  • Registry integrity, not a hand-rolled checksum. The binary is covered by npm's own integrity hash in your lockfile.
  • No Gatekeeper prompt on macOS. Binaries installed this way carry no quarantine attribute, unlike a browser-downloaded .dmg.

Other ways to get it

  • Windows, via Scoop: scoop bucket add orchlane https://github.com/orchlane/scoop-bucket && scoop install the-configurator
  • macOS, double-clickable app: download the .dmg from GitHub Releases
  • Air-gapped / no npm: download the .tar.gz/.zip archive from GitHub Releases and verify it against the release's checksums.txt

Package layout

This package (@orchlane/the-configurator) is a thin launcher: it has no dependencies of its own and contains no binary. At install time npm also installs whichever one of these four matches your machine:

  • @orchlane/the-configurator-darwin-arm64
  • @orchlane/the-configurator-darwin-x64
  • @orchlane/the-configurator-win32-x64
  • @orchlane/the-configurator-win32-arm64

You should never need to depend on a platform package directly.

License

See LICENSE.