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

reactapp-project-setup

v8.0.0

Published

A powerful CLI to quickly scaffold React projects with Vite, TypeScript, Tailwind CSS, and more

Readme

🚀 ReactApp Project Setup

A powerful, beginner-friendly CLI tool to scaffold modern web projects in seconds with React, Vue, Svelte, and more!

✨ Features

  • 🎨 Multiple Frameworks - React, Vue, Svelte, Preact, Lit, or Vanilla JS
  • 📘 TypeScript & JavaScript - Choose your preferred language
  • Vite Powered - Lightning-fast development experience
  • 🎨 Tailwind CSS v4 - Optional utility-first CSS framework with new Vite plugin approach
  • 🧭 Router Support - Optional routing setup for React, Vue, and Svelte
  • 📁 Organized Structure - Pre-configured folder structure
  • 🎯 Beginner Friendly - Beautiful CLI with clear instructions
  • 🚀 Zero Config - Start coding immediately

📦 Installation

Global Installation (Recommended)

npm install -g reactapp-project-setup

One-time Use (npx)

npx reactapp-project-setup

🎯 Usage

Simply run the command:

reactapp

Then follow the interactive prompts:

┌─ 📁 Project name: my-awesome-app
└──
┌─ 🎨 Choose your framework:   ⚛️   React - The UI library everyone loves
└──
┌─ 📝 Select your language:   📘   TypeScript - Type-safe & scalable
└──
┌─ 🎨 Add Tailwind CSS? [ YES ]
└──
┌─ 🧭 Include router? [ NO ]
└──
┌─ 📁 Organized folder structure? [ YES ]
└──

Quick Example

# Install globally
npm install -g reactapp-project-setup

# Create a new project
reactapp

# Follow prompts, then:
cd my-awesome-app
npm run dev

🛠️ What You Get

Framework Options

| Framework | Description | |-----------|-------------| | ⚛️ React | Most popular UI library | | 💚 Vue | Progressive framework | | 🔺 Svelte | No virtual DOM, truly reactive | | 🔷 Preact | Fast 3KB React alternative | | 🔶 Lit | Lightweight web components | | ⚡ Vanilla | Pure JavaScript, no framework |

Project Structure

After scaffolding, your project will have:

my-awesome-app/
├── src/
│   ├── components/     # Reusable components
│   ├── pages/          # Page components
│   ├── hooks/          # Custom hooks (React)
│   ├── assets/         # Images, fonts, etc.
│   ├── App.jsx         # Main app component
│   └── main.jsx        # Entry point
├── public/             # Static assets
├── index.html          # HTML template
├── package.json        # Dependencies
├── vite.config.js      # Vite configuration
└── README.md           # Project documentation

📚 Commands

Once your project is created:

# Start development server
npm run dev

# Build for production
npm run build

# Preview production build
npm run preview

🎯 Example Projects

Create a React + TypeScript + Tailwind app

reactapp
# Choose: React → TypeScript → Tailwind: Yes

Create a Vue 3 app with router

reactapp
# Choose: Vue → JavaScript → Router: Yes

Create a minimal Svelte app

reactapp
# Choose: Svelte → JavaScript → Tailwind: No → Router: No

🤝 Contributing

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

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

📝 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Acknowledgments

📧 Support

🌟 Show Your Support

Give a ⭐️ if this project helped you!


Made with ❤️ by Shahnawas Adeel