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

@stacker-oss/cli

v0.1.2

Published

The ultra-fast CLI for Stacker — scaffold production-ready projects in one command

Readme

Build your stack. Instantly.

The CLI companion to Stacker scaffold a production-ready project in one command from a template.

Version Runtime License


What it does

You configure your stack on stacker.ranveersoni.me/create — pick a framework, UI system, auth, ORM, API layer, and TanStack add-ons — and the site gives you a short template ID.

The CLI takes that ID, fetches your configuration, and runs the right scaffolding commands in the right order — automatically:

bunx  @stacker-oss/cli xCjNK1

Install

# bun (recommended)
bunx  @stacker-oss/cli <templateId>

# pnpm
pnpm dlx  @stacker-oss/cli <templateId>

# npm
npx  @stacker-oss/cli <templateId>

# yarn
yarn dlx  @stacker-oss/cli <templateId>

Usage

With a template ID

bunx  @stacker-oss/cli xCjNK1

Fetches the template, shows you a full plan, asks for confirmation, then runs.

Interactive

bunx  @stacker-oss/cli

Prompts you to enter a template ID if you don't pass one.

Options

| Flag | Description | |---|---| | [templateId] | Template ID from stacker.ranveersoni.me | | -d, --dir <dir> | Target directory (defaults to project name from template) | | --api <url> | Override the Stacker API base URL | | -y, --yes | Skip the confirmation prompt and run immediately | | -h, --help | Show help | | -v, --version | Show version |

Examples

# scaffold to a specific folder
bunx  @stacker-oss/cli xCjNK1 --dir my-app

# skip confirmation (great for CI)
bunx  @stacker-oss/cli xCjNK1 --yes

# point at a self-hosted Stacker instance
bunx  @stacker-oss/cli xCjNK1 --api https://stacker.ranveersoni.me

Supported frameworks

| Framework | Scaffolder used | |---|---| | Next.js | create-next-app@latest | | Vite | create-vite@latest | | TanStack Start | @tanstack/cli create | | React Router | create-react-router@latest | | Astro | create astro@latest | | Laravel | laravel new |



Development

# clone the repo
git clone https://github.com/StackerOSS/CLI
cd CLI

# install dependencies
bun install

# run in dev mode
bun run start

# compile to a single native binary
bun run build

The compiled binary (stacker.exe on Windows, stacker elsewhere) is self-contained and needs no runtime.


Environment

| Variable | Description | |---|---| | STACKER_API_BASE | Override the default API URL (https://stacker.ranveersoni.me) |


Made with <3 and a lot of bad decisions! · stacker.ranveersoni.me