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

@stackweld/cli

v0.4.0

Published

The operating system for your dev stacks — define, validate, scaffold, and launch development environments from the terminal.

Downloads

938

Readme

@stackweld/cli

Version License: MIT

The Stackweld CLI. Define, validate, scaffold, and launch development environments from the terminal.

Installation

npm install -g @stackweld/cli

Requires Node.js >= 22.0.0.

Usage

Run stackweld with no arguments to open the interactive menu:

stackweld

The wizard guides you through creating a project, browsing technologies, checking compatibility, and more — no commands to memorize.

Common commands

# Create a new project interactively
stackweld init

# Generate a project in one shot
stackweld generate \
  --name "my-app" \
  --path "/home/user/projects" \
  --techs "nextjs,fastapi,postgresql,redis,docker" \
  --profile production \
  --git

# Scaffold from a built-in template
stackweld create t3-stack --path /home/user/projects

# Check compatibility between two technologies
stackweld score nextjs prisma

# Audit an existing project
stackweld health ./my-app

# Check system requirements
stackweld doctor

# Generate shell completions
stackweld completion bash   # or zsh, fish

All 38 commands

| Command | Description | |---------|-------------| | stackweld init | Interactive stack creation wizard | | stackweld generate | One-shot project generation | | stackweld create <id> | Scaffold from a template | | stackweld list | List saved stacks | | stackweld info <id> | Show stack or technology details | | stackweld browse | Browse technology catalog | | stackweld browse --templates | Browse templates | | stackweld doctor | Check system requirements | | stackweld doctor --suggest | Suggest fixes for missing tools | | stackweld up | Start Docker services | | stackweld down | Stop Docker services | | stackweld down --volumes | Stop and remove volumes | | stackweld status | Show running service status | | stackweld logs [service] | View service logs | | stackweld logs -f | Follow log output | | stackweld export <id> | Export stack to YAML or JSON | | stackweld import <file> | Import stack from file | | stackweld save <id> | Save version snapshot | | stackweld delete <id> | Delete a stack | | stackweld clone <id> | Duplicate a stack | | stackweld scaffold <id> | Generate project files from saved stack | | stackweld version list <id> | Show version history | | stackweld version diff <id> <a> <b> | Compare two versions | | stackweld version rollback <id> --to <v> | Rollback to version | | stackweld template list | List built-in templates | | stackweld template save <id> | Save stack as custom template | | stackweld template saved | List your custom templates | | stackweld template use-custom <id> | Create from custom template | | stackweld config list | Show preferences | | stackweld config set <key> <value> | Set a preference | | stackweld ai suggest "<desc>" | Get stack suggestion from description | | stackweld ai readme <id> | Generate README from stack | | stackweld ai explain <id> | Explain stack architecture | | stackweld completion <shell> | Generate shell completions (bash/zsh/fish) | | stackweld score <techA> [techB] | Compatibility score between technologies | | stackweld analyze [path] | Detect stack from existing project | | stackweld benchmark <id> | Performance profile for a stack | | stackweld cost <id> | Estimate monthly hosting costs |

See the full command reference for all flags and options.

Requirements

  • Node.js >= 22.0.0
  • Docker + Docker Compose (for up, down, status, logs commands)

Repository

github.com/mundowise/Stackweld

License

MIT