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

@timbenniks/turbo-project

v0.1.0

Published

A whimsical CLI that scaffolds your full-stack project in one command

Readme

@timbenniks/turbo-project

Go from zero to a fully deployed full-stack app in one command.

turbo-project is an interactive CLI that scaffolds a complete project, provisions infrastructure, and leaves you ready to npm run dev — no manual wiring required.

Quick Start

npx @timbenniks/turbo-project

That's it. The wizard handles everything else.

You can also skip prompts with flags:

npx @timbenniks/turbo-project --name my-app --preset b5KJfbd9k

What You Get

In under two minutes, turbo-project sets up:

  • Next.js 16 with TypeScript and Tailwind CSS v4
  • shadcn/ui components via a customizable preset
  • Drizzle ORM with a starter schema and config
  • Neon serverless Postgres database, provisioned and connected
  • Vercel project linked to your repo with automatic deployments
  • GitHub repository (optional, public or private)
  • Environment variables synced to .env.local
  • AGENTS.md so LLM coding assistants understand your project out of the box
my-app/
├── app/                # Next.js App Router
├── components/         # shadcn/ui components
├── db/
│   └── schema.ts       # Drizzle schema (starter file)
├── drizzle.config.ts   # Drizzle config (reads DATABASE_URL)
├── .env.local          # Neon connection strings (auto-generated)
├── AGENTS.md           # LLM-friendly project documentation
├── README.md           # Project readme
└── ...                 # Standard Next.js files

How It Works

  1. Preflight — Checks that required tools are installed (node, git, vercel, optionally gh)
  2. Wizard — Prompts for project name, shadcn/ui preset, and GitHub preferences
  3. Scaffold — Runs shadcn init with your chosen preset and Next.js template
  4. Drizzle — Installs drizzle-orm, drizzle-kit, and the Neon serverless driver
  5. Git + GitHub — Initializes a repo, optionally creates a GitHub remote and pushes
  6. Vercel + Neon — Creates a Vercel project, provisions a Neon database, pulls env vars
  7. Documentation — Generates AGENTS.md and README.md with your stack details

Prerequisites

| Tool | Required | Install | |------|----------|---------| | Node.js v18+ | Yes | nodejs.org | | Git | Yes | git-scm.com | | Vercel CLI | Yes | npm i -g vercel | | GitHub CLI | No | cli.github.com |

The GitHub CLI is only needed if you want to create a GitHub repo during setup. Everything else works without it.

Customizing the Preset

By default, turbo-project uses the shadcn/ui preset b5KJfbd9k. You can create your own preset at ui.shadcn.com/create and pass it during setup — the wizard will prompt you, or use the --preset flag.

Tech Stack

| Layer | Technology | |-------|-----------| | Framework | Next.js 16 | | Language | TypeScript | | Styling | Tailwind CSS v4 | | Components | shadcn/ui | | ORM | Drizzle | | Database | Neon (serverless Postgres) | | Hosting | Vercel |

Contributing

git clone https://github.com/timbenniks/Turbo-Project.git
cd Turbo-Project
npm install
npm run build
npx .

License

MIT