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

code-kickstart

v1.4.0

Published

A CLI generator for bootstrapping projects with Next.js, Shadcn/ui, and AI examples

Readme

Code Kickstart 🚀

A CLI generator for bootstrapping modern web projects with Next.js, Shadcn/ui, and AI examples. Perfect for getting started quickly with Claude Code!

Features

  • Interactive CLI - Choose your template with guided prompts
  • Next.js 15+ with TypeScript and Tailwind CSS
  • Shadcn/ui components pre-configured
  • AI Examples using Vercel AI SDK
  • Git initialized with commits
  • Zero configuration - works out of the box

Quick Start

# Install globally
npm install -g code-kickstart

# Create a new project (interactive)
code-kickstart

# Or use direct commands
code-kickstart init my-app        # Simple starter
code-kickstart ai my-ai-app       # AI-powered app

Templates

🎯 Simple Starter

Perfect for beginners learning Claude Code:

  • Next.js 15+ with TypeScript
  • Tailwind CSS styling
  • Shadcn/ui component examples
  • Interactive demos (buttons, cards, forms)

🤖 AI-Powered

Advanced examples with AI capabilities:

  • All simple starter features
  • Vercel AI SDK integration
  • Chat with streaming responses
  • Text improvement tool
  • AI idea generator
  • Ready for OpenAI API

Usage

Interactive Mode (Recommended)

code-kickstart

Guides you through project name and template selection.

Direct Commands

code-kickstart init <project-name>    # Simple starter
code-kickstart ai <project-name>      # AI examples
code-kickstart help                   # Show help

AI Setup (for AI template)

  1. Get your OpenAI API key from OpenAI Platform
  2. Create .env.local in your project:
    echo "OPENAI_API_KEY=your-key-here" > .env.local
  3. Start development:
    npm run dev

Examples

Simple Project

code-kickstart init my-blog
cd my-blog
npm run dev

AI-Powered Project

code-kickstart ai my-ai-app
cd my-ai-app
echo "OPENAI_API_KEY=sk-..." > .env.local
npm run dev

What's Included

Both templates include:

  • Next.js 15+ with App Router
  • TypeScript configuration
  • Tailwind CSS
  • ESLint configuration
  • Shadcn/ui components
  • Git repository with initial commits

AI template additionally includes:

  • Vercel AI SDK
  • OpenAI integration
  • Chat interface with streaming
  • Text improvement tool
  • Idea generator
  • Structured AI outputs with Zod

Requirements

  • Node.js 18+
  • npm or yarn

Contributing

This tool is designed for learning and rapid prototyping. Feel free to fork and customize for your needs!

License

Private - All rights reserved