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-kickstartr-app

v1.0.7

Published

The ultimate fullstack starter generator for Next.js

Readme

create-kickstartr-app

The fastest way to create a Next.js fullstack application with your preferred tech stack.

🚀 Package Status

This package is LIVE and available on npm!

Quick Start

Interactive Mode

npx create-kickstartr-app@latest
# or
npm create kickstartr-app@latest
# or
yarn create kickstartr-app
# or
pnpm create kickstartr-app
# or
bun create kickstartr-app

CLI Mode

npx create-kickstartr-app@latest my-app --ui shadcn --auth clerk --orm prisma --db-provider neon --api trpc

Local Development (for contributors)

# Clone the repository
git clone https://github.com/Tristan-stack/kickstartr-cli
cd kickstartr-cli

# Install dependencies
npm install

# Build and test locally
npm run build
npm run test:interactive
npm run test:cli

Supported Technologies

UI Libraries

  • tailwind - Tailwind CSS (included by default)
  • shadcn - Beautiful and accessible components

Authentication

  • clerk - Complete authentication solution
  • nextauth - NextAuth.js for flexible auth
  • betterauth - Modern auth library

ORM

  • prisma - Type-safe database toolkit

Database Providers

  • neon - Serverless Postgres
  • supabase - Open source Firebase alternative

API Layer

  • trpc - End-to-end typesafe APIs
  • rest - Traditional REST APIs
  • graphql - GraphQL APIs

Examples

# Full stack app with all features
npx create-kickstartr-app@latest my-saas --ui shadcn --auth clerk --orm prisma --db-provider neon --api trpc

# Simple app with just UI
npx create-kickstartr-app@latest my-landing --ui tailwind --ui shadcn

# API-focused app
npx create-kickstartr-app@latest my-api --auth nextauth --orm prisma --api trpc

# Interactive mode
npx create-kickstartr-app@latest

# Using different package managers
npm create kickstartr-app@latest my-app
yarn create kickstartr-app my-app
pnpm create kickstartr-app my-app
bun create kickstartr-app my-app

What's Included

  • ⚡️ Next.js 15 - Latest version with App Router
  • 🎨 Tailwind CSS - Utility-first CSS framework
  • 📱 Fully Responsive - Mobile-first design
  • 🔒 Authentication Ready - Multiple auth providers
  • 🗄️ Database Integration - ORM and providers setup
  • 🚀 API Layer - Choose your preferred API style
  • 📦 TypeScript - Fully typed codebase
  • 🎯 Developer Experience - ESLint, Prettier, and more

Installation & Testing

# Quick test
npx create-kickstartr-app@latest test-project

# Install globally (optional)
npm install -g create-kickstartr-app
create-kickstartr-app my-project

Development (for contributors)

# Clone and setup
git clone https://github.com/Tristan-stack/kickstartr-cli
cd kickstartr-cli
npm install

# Build and test locally
npm run build
npm run test:interactive
npm run test:cli

# Publish new version
npm run release  # builds, increments version, and publishes

License

MIT