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

v0.2.1

Published

Create Rayden UI applications with one command

Downloads

284

Readme

create-rayden-app

The easiest way to get started with Rayden UI - scaffold a new React project with Rayden UI pre-configured.

Quick Start

npx create-rayden-app my-app
cd my-app
npm install
npm run dev

Features

  • Framework options: Vite (recommended) or Next.js
  • 6 Templates: From blank canvas to full e-commerce
  • TypeScript support: Full TypeScript setup out of the box
  • Tailwind CSS v4: Pre-configured with Rayden UI design tokens
  • Modern stack: React 19, latest tooling

Usage

Interactive Mode

Run without arguments for an interactive experience:

npx create-rayden-app

You'll be prompted to choose:

  • Project name
  • Framework (Vite or Next.js)
  • Template (Blank, Minimal, Landing, Dashboard, E-commerce, Blog)
  • TypeScript (Yes/No)
  • Package manager (pnpm, npm, or yarn)
  • Git initialization
  • Dependency installation

Non-Interactive Mode

Pass flags for CI/automation:

npx create-rayden-app my-app -f vite -t landing --ts --pm pnpm

Available Flags

| Flag | Description | |------|-------------| | -f, --framework <name> | vite or nextjs | | -t, --template <name> | blank, minimal, landing, dashboard, ecommerce, or blog | | --ts, --typescript | Use TypeScript (default) | | --js, --javascript | Use JavaScript | | --pm <manager> | npm, pnpm, or yarn | | --git / --no-git | Initialize git (default: true) | | --install / --no-install | Install dependencies |

Templates

Blank

An empty project with Rayden UI configured. Perfect for starting from scratch.

  • Clean slate with basic structure
  • Rayden UI and Tailwind CSS ready to use
  • Ideal for custom projects

Minimal

A clean starting point showcasing core components.

  • Single page with Button, Input, and Badge demo
  • Great for learning the component API
  • Minimal dependencies

Landing Page

A marketing landing page template with modern sections.

  • Hero section with CTA buttons
  • Features grid with icons
  • Testimonials with avatars
  • Pricing tiers
  • Newsletter signup
  • Fully responsive design

Components used: Button, Badge, Avatar, Icon, Divider, Input

Dashboard

A full dashboard layout with navigation and data visualization.

  • Sidebar navigation with SidebarMenu
  • MetricsCard grid
  • Data tables with sorting
  • Multiple pages (Dashboard, Transactions, Settings)
  • React Router (Vite) or App Router (Next.js)

Components used: SidebarMenu, MetricsCard, Table, Avatar, Badge, Button, Input

E-commerce

A complete storefront template with shopping functionality.

  • Product listing with filters and sorting
  • Product detail pages
  • Shopping cart with quantity controls
  • Checkout form with validation
  • Category navigation

Components used: Button, Badge, Input, Select, Counter, Breadcrumb, Divider

Blog

A content-focused template for articles and posts.

  • Home page with featured post
  • Individual post pages with Markdown-style content
  • Sidebar with search, categories, and recent posts
  • About page with author profiles
  • Category filtering

Components used: Avatar, Badge, Input, Divider, Breadcrumb, Button

What's Included

Every scaffolded project comes with:

  • Rayden UI - Pre-installed component library
  • Tailwind CSS v4 - Configured with Rayden design tokens
  • ESLint - Code linting setup
  • TypeScript - Full type support (if selected)

Examples

# Create a landing page with TypeScript
npx create-rayden-app my-landing -f vite -t landing --ts

# Create an e-commerce site with Next.js
npx create-rayden-app my-store -f nextjs -t ecommerce --ts

# Create a blog with JavaScript
npx create-rayden-app my-blog -f vite -t blog --js

# Create a dashboard with pnpm
npx create-rayden-app my-dashboard -f nextjs -t dashboard --ts --pm pnpm

Learn More

License

MIT