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

skipsetup-cli

v1.1.9

Published

Build full-stack applications that are appropriately scaled from the outset. Select between small or medium scale to obtain a production-ready stack, complete with authentication, database integration, and deployment configurations. Commence development o

Readme

SkipSetup CLI

Build full-stack applications that are appropriately scaled from the outset. Select between small or medium scale to obtain a production-ready stack, complete with authentication, database integration, and deployment configurations. Commence development of your core business logic without delay.

Installation

No installation is required. Execute directly using npx:

npx skipsetup-cli@latest create projectname --size small
npx skipsetup-cli@latest create projectname --size medium

Project Scale Guide

Small Projects (MVP / Prototype)

Ideal for:

  • Prototypes
  • Weekend projects
  • Simple minimum viable products (MVPs)

Configuration:

Profile: SMALL
Description: Minimal MVP: Auth + DB basics
Modules: [auth] [db] [email-resend]
Plugins: [small]
Infrastructure: [postgres]

Core Stack:

  • Authentication with email/password and one-time password (OTP)
  • Basic database setup with Prisma
  • Resend for email verification
  • Next.js 15 (App Router)
  • TypeScript + Tailwind CSS

Included Features:

  • Sign-in / sign-up with email verification
  • Basic user dashboard
  • Simple database schema
  • Email sending
  • Fully responsive user interface

Medium Projects (SaaS Ready)

Ideal for:

  • Small businesses
  • Startups
  • Software-as-a-Service (SaaS) products

Configuration:

Profile: MEDIUM
Description: SaaS-ready: Admin + monitoring
Modules: [auth] [db] [admin] [stripe] [email] [monitoring-dashboard]
Plugins: [medium]
Infrastructure: [postgres]

Core Stack:

  • Better Auth (advanced authentication)
  • Admin dashboard with user management
  • Monitoring & analytics dashboard
  • Email templates & workflows
  • Stripe payment integration

Included Features:

  • Admin panel for users and transactions
  • Monitoring dashboard with charts
  • Email template system
  • API rate limiting & security
  • Full Stripe SaaS billing system

Quick Start

# Create a small MVP project
npx skipsetup-cli@latest create my-mvp --size small

# Create a medium SaaS project
npx skipsetup-cli@latest create my-saas --size medium

Development Commands

cd your-project-name

pnpm install        # Install dependencies
pnpm dev            # Start development server
pnpm db:push        # Apply database schema
pnpm db:generate    # Generate Prisma client
pnpm build          # Build for production
pnpm start          # Start production server

AI Development Context (Kiro)

Each project includes a .kiro folder containing AI-ready development context.

Kiro Agents

Pre-configured AI specialists:

  • auth-expert – Authentication & user management
  • database-architect – Schema design & optimization
  • fullstack-specialist – End-to-end features
  • ui-specialist – Components & layouts

Project Specifications (AI-Readable)

  • API documentation
  • Auth flows & security rules
  • Design patterns & components
  • Database schema & relationships

Generated Project Structure

your-project/
├─ src/
│  ├─ app/
│  │  ├─ (auth)/           # Signin, signup, verify
│  │  ├─ (protected)/      # Authenticated routes
│  │  ├─ api/              # API routes (REST + tRPC)
│  │  └─ layout.tsx
│  ├─ server/
│  │  ├─ api/              # tRPC routers
│  │  ├─ db/               # Database client
│  │  └─ auth/             # Auth config
│  ├─ trpc/                # Client setup
│  └─ utils/
├─ prisma/
│  ├─ schema.prisma
│  └─ seed.ts
├─ .env.example
├─ .kiro/
└─ package.json

Module Details

Small Project Modules

  • auth – Email/password + OTP
  • db – Prisma database setup
  • email-resend – Email verification

Medium Project Modules

  • auth – Better Auth
  • db – Full SaaS schema
  • admin – Admin dashboard
  • stripe – Payments
  • email – Email workflows
  • monitoring-dashboard – Analytics

Plugin System

SkipSetup employs scale-specific plugins:

plugin-small

  • Minimal authentication
  • Basic database
  • Essential email features

plugin-medium

  • Advanced authentication
  • Admin interface
  • Monitoring & analytics
  • Stripe payments
  • Email workflows

Database Setup

pnpm db:push     # Apply schema
pnpm db:seed     # Seed data (optional)

Small Projects

  • Basic users & sessions
  • SQLite or PostgreSQL

Medium Projects

  • Users, payments, admin data
  • Audit logs & analytics
  • Full relationships

Authentication Modes

Small

  • Email/password login
  • OTP verification
  • Email confirmation
  • Basic sessions

Medium

  • Better Auth
  • Role-based access control
  • Secure session handling

Environment Variables

cp .env.example .env

Required:

DATABASE_URL="postgresql://user:pass@localhost:5432/db"
AUTH_SECRET="your-secret-key"
RESEND_API_KEY="re_xxxxx"

Medium only:

STRIPE_SECRET_KEY="sk_test_xxxx"
STRIPE_WEBHOOK_SECRET="whsec_xxxx"
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY="pk_test_xxxx"

Deployment

Deploy to Vercel:

npm i -g vercel
vercel --prod

Includes:

  • Vercel configurations
  • GitHub Actions CI/CD
  • Environment variable setup

Troubleshooting

Database Issues

  • Ensure the database is running
  • Verify DATABASE_URL
  • Check Prisma schema

TypeScript Errors

  • Run pnpm build
  • Check generated code

Dependency Warnings

  • Peer warnings are normal
  • Use pnpm install --force if needed

Why SkipSetup?

  • Right-sized architecture
  • Production-ready security
  • AI-optimized development
  • Zero configuration
  • Modular and extensible

License

MIT License

Start Building

npx skipsetup-cli@latest create my-app --size medium