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

create-kickstart

v1.0.0

Published

Scaffold production-ready fullstack, backend, mobile projects. React + FastAPI/Express/Go/Spring Boot. Docker, CI/CD, Terraform, Grafana, auth, CRUD, AI context (CLAUDE.md, .cursorrules). One command.

Readme

create-kickstart

Scaffold production-ready fullstack, backend, mobile, and CLI projects in seconds. One command. Any stack. AI-friendly.

npx create-kickstart

Why?

Starting a new project shouldn't take hours. Every time you start a POC or greenfield project, you repeat the same setup: Docker, CI/CD, linting, testing, env management, database configs, deployment. create-kickstart does all of it in one command.

What makes it different?

| Feature | create-kickstart | create-next-app | cookiecutter | yeoman | |---------|-----------------|-----------------|-------------|--------| | Multi-stack (React + FastAPI) | Yes | No | No | No | | Add services to existing project | Yes | No | No | No | | Switch deploy providers | Yes | No | No | No | | AI context files (CLAUDE.md, .cursorrules) | Yes | No | No | No | | Observability (Grafana + OTel) | Yes | No | No | No | | 8 deploy providers + Terraform | Yes | No | No | No | | Analytics SDK (PostHog, Segment) | Yes | No | No | No | | GraphQL + gRPC scaffold | Yes | No | No | No | | Mobile (React Native, Flutter) | Yes | No | No | No |

Quick Start

# Interactive — walks you through every choice
npx create-kickstart

# One-liner — for AI agents and scripts
npx create-kickstart my-app \
  --type fullstack \
  --frontend react-vite \
  --backend fastapi \
  --with docker,ci,lint,test,env,db,ai-context \
  --database postgres \
  --no-interactive

Supported Stacks

Frontend

Next.js | React + Vite | Vue 3 | SvelteKit | Angular

Backend

FastAPI (Python) | Express (TypeScript) | Hono | Django | Go Chi | Spring Boot (Java)

Mobile

React Native | Flutter | Swift (iOS) | Kotlin (Android)

Database

PostgreSQL | MySQL | SQLite | MongoDB

Enhancements

Pick what you need — mix and match:

| Enhancement | What it does | |------------|-------------| | docker | Dockerfile + docker-compose for all services | | ci | GitHub Actions CI workflow | | lint | ESLint/Prettier, Ruff, golangci-lint | | test | Test runner config + example tests | | env | .env management with .env.example | | db | Database configs (Postgres, MySQL, SQLite, MongoDB) | | ai-context | CLAUDE.md, .cursorrules, copilot.md, AI_CONTEXT.md | | auth | JWT authentication (login/register) | | sample-crud | Working /items CRUD API + frontend component | | api-wiring | CORS + proxy + typed API client (fullstack) | | doctor | Dev environment prerequisite checker | | logging | Structured logging (pino, structlog, zerolog) | | observability | OpenTelemetry + Grafana + Prometheus + Tempo + Loki | | analytics | PostHog, CleverTap, MoEngage, Mixpanel, Segment | | api-protocol | GraphQL (client-facing) + gRPC (internal) | | deploy | Deploy configs for 8 platforms | | deps-auto | Dependabot automation | | pre-commit | Pre-commit hooks |

Multi-Service Monorepo

Add backend services in any language to your existing project:

cd my-app
npx create-kickstart add payment-svc --backend express --with db,test
npx create-kickstart add notifications --backend go-chi --with test

Result:

my-app/
  frontend/
  backend/
    api/              # Primary (FastAPI)
    payment-svc/      # Express (TypeScript)
    notifications/    # Go (Chi)
  docker-compose.yml  # All services wired

Progressive Deployment

Start easy, graduate when ready:

# POC — deploy to Railway in 1 minute
npx create-kickstart deploy --provider railway

# Production — switch to AWS ECS with Terraform
npx create-kickstart deploy --provider aws-ecs
# Generates: VPC, ECS cluster, ECR, ALB, GitHub Actions CI/CD

# Scale — switch to Kubernetes
npx create-kickstart deploy --provider kubernetes
# Generates: Helm chart + K8s manifests

| Tier | Providers | |------|-----------| | PaaS | Railway, Render, Fly.io, Vercel | | Cloud-native | AWS ECS (Fargate), GCP Cloud Run, Azure Container Apps | | Kubernetes | Helm charts + K8s manifests |

Cloud-native providers include full Terraform modules (VPC, load balancer, container registry, auto-scaling).

AI-Friendly

Every generated project includes AI context files tailored for each tool:

  • CLAUDE.md — Architecture diagram, commands, "how to add" recipes for Claude Code
  • .cursorrules — Code style rules, project structure rules for Cursor
  • .github/copilot.md — File locations, test commands for GitHub Copilot
  • AI_CONTEXT.md — Overview and quick reference for ChatGPT and others

The CLI itself is AI-agent friendly — --no-interactive mode accepts all options as flags, so any AI coding assistant can scaffold projects programmatically.

Contributing

git clone https://github.com/sswapnil2/create-kickstart
cd create-kickstart
npm install
npm run build
node dist/index.js my-app --type backend --backend fastapi --with docker,env --no-interactive

See CLAUDE.md for architecture docs and "how to add" guides.

License

MIT