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

@mtg9ing/bliss

v2.1.1

Published

The automated backend architect for Node.js and Bun

Readme

Bliss CLI 🚀

The automated backend architect for Node.js, Bun, and beyond.

Bliss scaffolds production-ready backend projects with surgical precision. Choose your framework, pick your features, and deploy — all from one command.

Features

  • 🛠 Project Scaffoldingbliss create generates complete Express, Fastify, or Vanilla projects
  • 📦 Feature Modulesbliss add logger injects features with auto-wiring
  • 🔧 Smart Initbliss init configures existing projects or bootstraps empty folders
  • 🏥 Health Checksbliss doctor diagnoses your project setup
  • 🔀 Git & GitHubbliss git handles commits, PRs, releases, and auth
  • 📋 Activity Logs.bliss/logs/ tracks every command for transparency

Installation

# Using npm
npm install -g @mtg9ing/bliss

# Using bun (recommended)
bun add -g @mtg9ing/bliss

# Using pnpm
pnpm add -g @mtg9ing/bliss

Quick Start

Create a new backend project

bliss create my-api
# Interactive prompts for framework, language, features

Initialize current directory

cd my-project
bliss init
# Detects existing setup or offers full scaffold

Add features to existing project

bliss add logger      # Structured logging with Pino
bliss add errors      # Centralized error handling
bliss add env         # Environment config with Zod
bliss add security    # Helmet, rate-limiting, sanitization
bliss add performance # Compression, caching
bliss add auth        # JWT authentication
bliss add cors        # CORS middleware

Git & GitHub helpers

bliss git             # Interactive git menu
bliss git commit      # Conventional commits with prompts
bliss git pr          # Create GitHub pull request
bliss git whoami      # Check GitHub auth status

Health check

bliss doctor          # Validate project setup

View activity

bliss logs            # Show recent commands and results

Commands

| Command | Description | Alias | |---------|-------------|-------| | bliss create <name> | Scaffold new project | new, scaffold | | bliss init | Configure or bootstrap current directory | setup | | bliss add <feature> | Add feature module | install, boost | | bliss remove <feature> | Remove feature module | uninstall | | bliss doctor | Run health checks | check, diagnose | | bliss git <action> | Git & GitHub helpers | gh | | bliss logs | View activity history | activity, history | | bliss help [cmd] | Show help | h |

Supported Frameworks

| Framework | Status | Features | |-----------|--------|----------| | Express.js | ✅ Stable | All features | | Fastify | ✅ Stable | All features | | Vanilla Node.js | ✅ Stable | All features | | Hono | 🚧 Planned | — | | Elysia | 🚧 Planned | — |

Supported Package Managers

  • Bun (recommended, auto-detected via bun.lockb)
  • npm (auto-detected via package-lock.json)
  • pnpm (auto-detected via pnpm-lock.yaml)

Generated Project Structure

my-api/
├── src/
│   ├── index.ts          # Server bootstrap
│   ├── app.ts            # Framework setup
│   ├── routes/           # API routes
│   ├── lib/              # Utilities (auto-populated by features)
│   ├── middleware/       # Middleware (auto-populated by features)
│   └── config/           # Configuration (auto-populated by features)
├── tests/                # Vitest tests
├── .bliss/               # Bliss config & logs
│   ├── config.json
│   └── logs/
├── package.json
├── tsconfig.json
├── .gitignore
└── README.md             # Auto-generated with feature list

Feature Auto-Injection

Bliss doesn't just copy files — it wires them into your app:

// Before: bliss add logger
import express from 'express';
const app = express();

// After: bliss add logger
import express from 'express';
import { requestLogger } from './middleware/request-logger.js';
const app = express();
app.use(requestLogger);  // ← Auto-injected

If auto-injection fails (complex file structure), Bliss provides manual instructions.

Configuration

Bliss stores configuration in .bliss/config.json:

{
  "version": "2.1.0",
  "project": {
    "name": "my-api",
    "type": "backend",
    "framework": "express",
    "language": "typescript",
    "entryFile": "src/app.ts"
  },
  "packageManager": "bun",
  "features": ["logger", "errors", "env"],
  "createdAt": "2026-05-25T19:40:00.000Z"
}

Requirements

  • Bun >= 1.0.0 or Node.js >= 18
  • Git (for bliss git commands)
  • GitHub CLI or GITHUB_TOKEN (for GitHub API commands)

Contributing

We love contributions!

  • Issues: Bug reports and feature requests
  • PRs: Follow existing code style, include tests, update README
  • Discussions: Architecture decisions and roadmap

Development

git clone https://github.com/MTG9ing/bliss.git
cd bliss
bun install
bun test
bun run build

Roadmap

  • [x] Express, Fastify, Vanilla support
  • [x] Feature auto-injection
  • [x] Git & GitHub integration
  • [x] Activity logging
  • [ ] Hono framework
  • [ ] Elysia framework
  • [ ] Frontend scaffolding (HTML/CSS/JS for GitHub Pages)
  • [ ] Microservices architecture template
  • [ ] MVC architecture template
  • [ ] Docker deployment config
  • [ ] CI/CD template generation

License

MIT — see LICENSE


Built with passion for the developer community. ❤️