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

@blissful-infra/cli

v1.2.0

Published

CLI for blissful-infra - infrastructure that thinks for itself

Readme

@blissful-infra/cli

blissful-infra.com — full docs and guides

One command creates and runs a full-stack app with CI/CD, observability, and an AI agent — no cloud required.

npm install -g @blissful-infra/cli
blissful-infra start my-app

What you get

  • Backend — Kotlin/Spring Boot, Python/FastAPI, Node/Express, or Go/Chi
  • Frontend — React + Vite or Next.js, both with TypeScript and Tailwind
  • Database — Postgres with Flyway migrations, Redis caching, or both
  • Kafka — event bus wired between backend and frontend via WebSockets + SSE
  • Observability — Prometheus, Grafana, Loki, and Jaeger provisioned automatically
  • CI/CD — Jenkins pipeline with a generated Jenkinsfile, Docker registry included
  • AI agent — Ask Claude or Ollama to diagnose errors, analyze logs, and explain metrics
  • MCP server — Let Claude orchestrate your entire local platform via natural language

Quickstart

Prerequisites: Docker Desktop running, Node.js 18+

# Install
npm install -g @blissful-infra/cli

# Create and start a project
blissful-infra start my-app --backend spring-boot --database postgres

# Open the dashboard
blissful-infra dashboard

Your app is running at:

| Service | URL | |------------|---------------------------| | Frontend | http://localhost:3000 | | Backend | http://localhost:8080 | | Grafana | http://localhost:3001 | | Dashboard | http://localhost:3002 | | Jenkins | http://localhost:8081 |

Commands

blissful-infra start <name>       # Create and run a new project
blissful-infra up [name]          # Start an existing project
blissful-infra down [name]        # Stop a project
blissful-infra dashboard          # Launch the web dashboard
blissful-infra logs [name]        # View logs
blissful-infra mcp                # Start MCP server for Claude
blissful-infra example [name]     # Scaffold a reference example
blissful-infra deploy [name]      # Deploy to an environment
blissful-infra agent [name]       # AI debugging agent

Options

--backend   spring-boot | fastapi | express | go-chi  (default: spring-boot)
--frontend  react-vite | nextjs                        (default: react-vite)
--database  none | postgres | redis | postgres-redis   (default: postgres)
--plugins   ai-pipeline | scraper                      (comma-separated)

MCP Server

blissful-infra ships an MCP server so Claude can manage your infrastructure directly.

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "blissful-infra": {
      "command": "npx",
      "args": ["-y", "@blissful-infra/cli", "mcp"]
    }
  }
}

Then ask Claude things like:

  • "What's the health of all my projects?"
  • "Show me ERROR logs from the backend in my-app"
  • "Why is the backend restarting? Diagnose it."
  • "Deploy my-app to staging"

Examples

Reference implementations for real-world use cases:

blissful-infra example content-recommender
cd content-recommender && blissful-infra up

| Example | Stack | |---------|-------| | content-recommender | Spring Boot + ALS collaborative filtering + ClickHouse + MLflow + Scrapy |

Links