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

@catalystsoftware/forge

v1.0.0

Published

Catalyst Forge CLI

Readme

Catalyst Forge CLI 🚀

The official command-line tool for managing the Catalyst Software ecosystem. This tool detects your current project state and offers a smart, context-aware menu to install or update UI components, icons, and VS Code extensions.

The forge will continue to serve as the centralized CLI to update / create / configure your projects and will recieve updates as new libraries are released for example, currently in the works is a library that will create projects akin to create-remix and remix-stacks but will be platform agnostic.

📦 Core Functionality

The CLI logic is driven by your project's package.json, .vscode folder, and the config.catalyst file. It dynamically presents options based on what you already have installed.

🛠 Smart Menu Options

1. Project Initialization

  • Create new remix-run project: Scaffolds a fresh Remix project. If you're already in a project, it offers to create it in another folder.

2. Workflow Actions

  • Install All: (Premium Only) One-click installation of both Icons and UI in your current workspace.
  • Update All: Updates everything in the current workspace to match the latest remote versions.

3. Catalyst UI Management

  • Install Catalyst UI: visible if no config.catalyst is found.
  • Update Catalyst UI: visible if your local version differs from the remote version.
  • Interactive UI Menu: Opens the detailed component/library/CSS selector.
  • Full Install (with or without Ngin): Automated setup including optional Ngin presets.
  • Configure Only: Set up Tailwind and PostCSS without adding components.
  • Create Config: Generates a pre-configured config.catalyst file.
  • Configure Import Call: Sets up the #catalyst and #icons path aliases.

4. Icon & Extension Support

  • Catalyst Icons: Detects versioning in package.json to offer Install or Update.
  • VS Code Extension: Checks your .vscode folder to suggest installing or updating the Catalyst extension.

🚀 Usage

Run the CLI using Bun or your preferred runner:

bun run F:/forge/index.js -p [target-project-path]

Path Flag (-p)

The tool uses the -p flag to resolve the targetPath. If no flag is provided, it defaults to your current working directory.

⚙️ How it Works (Project State)

The CLI checks the following to build your menu:

  1. UI Version: Read from config.catalyst version key.
  2. Icon Version: Read from dependencies in package.json.
  3. Extension: Checks for the presence of the catalyst extension in .vscode.
  4. Remote Versions: Pings the registry/marketplace to compare local vs remote.

Internal Dev Note: Version Updates

The constants currentExtVersion, currentUIVersion, and currentIconsVersion in the header of index.js are used as the fallback/source of truth for the latest versions. Ensure these are updated before running.

Would you like me to add a specific section for the Premium vs Free feature differences to the README?