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

@naimdev/create-pro-react-app

v1.0.3

Published

A professional React starter kit with Vite, TypeScript, Tailwind CSS, routing, and dashboard layout

Readme

Create Pro React App 🚀

A modern, production-ready React starter template built with best practices and the latest tools in mind.

Get a fully configured React + TypeScript + Tailwind + Vite project up and running in seconds — complete with routing, dashboard layout, dark mode, reusable UI components, path aliases, ESLint + Prettier, and excellent developer experience.

React TypeScript Tailwind CSS Vite

✨ Features

  • Vite — extremely fast dev server & builds
  • 🔒 TypeScript — full type safety
  • 🎨 Tailwind CSS — utility-first styling with dark mode
  • 🛣 React Router v6 — clean routing setup
  • 📦 Pre-configured path aliases (@components/, @pages/, etc.)
  • 🏠 Main layout + 📊 Dashboard layout (collapsible sidebar)
  • 🧩 Reusable UI components: Button, Card, Modal, Toast, Table, Stat cards...
  • 🔥 Hot Module Replacement
  • 🎯 ESLint + Prettier
  • 📱 Fully responsive & mobile-first
  • 🌙 Dark mode built-in (via class strategy)

🚀 Quick Start

# 1. Create new project (pick one)
npx @naimdev/create-pro-react-app my-app
# or
yarn @naimdev/create-pro-react-app my-app
# or
pnpm @naimdev/create-pro-react-app my-app

# 2. Go to project folder
cd my-app

# 3. Install dependencies
npm install
# or yarn
# or pnpm install

# 4. Start development server
npm run dev
# or yarn dev
# or pnpm dev


→ Open http://localhost:5173
📁 Project Structure


my-app/
├── public/                 # static files (favicon, robots.txt...)
├── src/
│   ├── assets/             # images, fonts, icons...
│   ├── components/
│   │   ├── common/         # shared / layout-agnostic
│   │   ├── dashboard/      # dashboard-specific components
│   │   ├── layout/         # Navbar, Sidebar, Footer...
│   │   └── ui/             # atomic components → Button, Card, Modal, Toast...
│   ├── constants/          # app-wide constants
│   ├── hooks/              # custom hooks
│   ├── layouts/            # MainLayout, DashboardLayout...
│   ├── pages/              # page components (route-based)
│   │   └── dashboard/      # dashboard sub-pages
│   ├── routes/             # AppRoutes.tsx + route definitions
│   ├── types/              # global TypeScript types
│   ├── utils/              # helper functions, formatters...
│   ├── App.tsx
│   ├── main.tsx
│   └── index.css           # global styles + tailwind imports
├── tailwind.config.js
├── tsconfig.json
├── vite.config.ts
├── .eslintrc.json
└── ...


🎯 Available Scripts
npm run dev       Start dev server
npm run build     Build for production
npm run preview   Preview production build
npm run lint      Run ESLint

🛠 Tech Stack (2025–2026 versions)

Package,Purpose,Approx. version
react,UI library,^18.3.x
react-router-dom,Routing,^6.26.x
vite,Build tool & dev server,^5.4.x
typescript,Type safety,^5.6.x
tailwindcss,Styling,^3.4.x
lucide-react,Icons,^0.45x
clsx,Class name helper,^2.x
date-fns,Date formatting,^3.x / ^4.x

🎨 Quick Customization Examples
Add a new page

// src/pages/About.tsx
export default function About() {
  return (
    <div className="container mx-auto py-12 px-4">
      <h1 className="text-4xl font-bold">About Us</h1>
      <p className="mt-4 text-lg">...</p>
    </div>
  )
}
// src/routes/AppRoutes.tsx
<Route path="/about" element={<About />} />

Use a UI component
import { Button } from '@/components/ui/button'

<Button variant="primary" size="lg">
  Get Started
</Button>

🚀 Deployment (one command builds)


npm run build
# output → dist/

Popular platforms:

Vercel / Netlify / Render / Cloudflare Pages → just connect Git repo
Build command: npm run build
Output directory: dist

📄 License
MIT © 2025–2026 Naimur Rahman Naim
👤 Author
Naimur Rahman Naim
🌐 https://naimworld.netlify.app
🐙 https://github.com/naimekattor
💼 https://linkedin.com/in/naimekattor
📧 [email protected]
Made with ❤️ — star the repo if it saves you time! ⭐


Just select everything inside the ```markdown

Good luck with the template! 🚀