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

v1.0.0

Published

A scaffolding tool for creating Next.js applications with HeroUI

Readme

Create HeroUI App

A scaffolding tool for creating Next.js applications with HeroUI, TypeScript, and Tailwind CSS.

Features

  • ⚡️ Next.js 15 with App Router
  • 🎨 HeroUI - Beautiful React components
  • 🔷 TypeScript - Type safety out of the box
  • 🎯 Tailwind CSS - Utility-first CSS framework
  • 📦 pnpm - Fast, disk space efficient package manager
  • ☁️ Cloudflare - Ready for deployment with OpenNext
  • 🚀 Turbopack - Fast development server

Quick Start

# Using npx
npx create-heroui-app my-app

# Using pnpm
pnpm create heroui-app my-app

# Using yarn
yarn create heroui-app my-app

Usage

create-heroui-app [project-name] [options]

Options

  • -t, --template <template> - Template to use (default: "default")
  • --skip-install - Skip installing dependencies
  • -h, --help - Display help information
  • -V, --version - Display version number

Examples

# Create a new app with default template
create-heroui-app my-heroui-app

# Create a new app and skip dependency installation
create-heroui-app my-heroui-app --skip-install

# Create a new app with a specific template (when more templates are available)
create-heroui-app my-heroui-app --template advanced

What's Included

The generated project includes:

Dependencies

  • Next.js 15 - React framework with App Router
  • React 19 - Latest React version
  • HeroUI - Modern React UI library
  • Heroicons - Beautiful hand-crafted SVG icons
  • TypeScript - Static type checking
  • Tailwind CSS - Utility-first CSS framework

Development Tools

  • ESLint - Code linting
  • PostCSS - CSS processing
  • Autoprefixer - CSS vendor prefixing

Deployment Ready

  • OpenNext Cloudflare - Deploy to Cloudflare Pages/Workers
  • Wrangler - Cloudflare development tools

Project Structure

my-heroui-app/
├── public/
│   ├── fonts/
│   └── *.svg
├── src/
│   └── app/
│       ├── globals.css
│       ├── layout.tsx
│       ├── page.tsx
│       └── providers.tsx
├── next.config.ts
├── tailwind.config.js
├── tsconfig.json
├── package.json
└── wrangler.jsonc

Getting Started After Creation

  1. Navigate to your project:

    cd my-heroui-app
  2. Install dependencies (if skipped):

    pnpm install
  3. Start the development server:

    pnpm dev
  4. Open http://localhost:3000 in your browser.

Available Scripts

  • pnpm dev - Start development server with Turbopack
  • pnpm build - Build for production
  • pnpm start - Start production server
  • pnpm lint - Run ESLint
  • pnpm deploy - Deploy to Cloudflare
  • pnpm preview - Preview Cloudflare deployment locally

Customization

HeroUI Theme

The project comes with HeroUI pre-configured. You can customize the theme in tailwind.config.js:

const { heroui } = require("@heroui/theme");

module.exports = {
  // ... other config
  plugins: [
    heroui({
      themes: {
        light: {
          colors: {
            primary: "#your-color"
          }
        }
      }
    })
  ]
}

Adding Components

HeroUI components are ready to use:

import { Button, Card, CardBody } from "@heroui/react";

export default function MyComponent() {
  return (
    <Card>
      <CardBody>
        <Button color="primary">Click me</Button>
      </CardBody>
    </Card>
  );
}

Deployment

Cloudflare Pages/Workers

The project is pre-configured for Cloudflare deployment:

pnpm deploy

Other Platforms

You can also deploy to other platforms like Vercel, Netlify, or any Node.js hosting service.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License - see the LICENSE file for details.

Links