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 🙏

© 2025 – Pkg Stats / Ryan Hefner

create-rp-app

v1.3.1

Published

Interactive CLI to scaffold React 19 + Webpack 5 with optional Router, Redux (Thunk/Saga), Axios, and CSS frameworks – no hidden config

Readme

Create-Reactopack

Interactive CLI to generate React 19 + Webpack 5 apps with optional Router, Redux, Axios, and CSS frameworks – full control, no hidden config.

Perfect if you like React + Webpack but want a faster setup than wiring everything from scratch or fighting CRA/Vite’s hidden config.

Quick Start

npx create-rp-app

That's it! Follow the interactive prompts to customize your React project.

Common Setups

  • React + TypeScript + Router + Redux + TailwindCSS
npx create-rp-app
# Prompts:
# - Folder name: my-awesome-app
# - Will you be using TypeScript or JavaScript? TypeScript
# - Select a package manager: pnpm (or npm / yarn)
# - What packages to include? React Router, Redux, Axios
# - Please choose the css framework: TailwindCSS

What You Get

Create-Reactopack generates a clean, production-ready React project with:

  • Webpack configured and ready
  • Package Manager choice (npm, yarn, or pnpm)
  • TypeScript or JavaScript support
  • CSS Frameworks: TailwindCSS, MUI, or Bootstrap
  • React Router for routing
  • Redux with Thunk or Saga middleware
  • Axios for API calls
  • Zero configuration - everything works out of the box

Why Choose Reactopack?

| Feature | Reactopack | CRA / Vite / Others | |---------|-----------|----------------------| | Webpack Control | Full control | Hidden or abstracted config | | Package Selection | Interactive | Fixed setup / extra installs | | CSS Framework | Choose on setup | Manual install & wiring | | State Management | Pre-configured Redux + middleware | DIY setup | | Speed | Fast setup | Varies |


Features

  • Interactive CLI - Choose what you need, skip what you don't
  • Fully Customizable - Webpack config is yours to modify
  • Fast Setup - Get started in seconds, not minutes
  • Secure - Latest packages with no known vulnerabilities
  • Modern Stack - React 19, latest Webpack, and best practices
  • Zero Bloat - Only install what you select

What's Included

Core Setup

  • React 19 with Webpack 5
  • Hot Module Replacement (HMR)
  • Production-ready build configuration
  • Development server with auto-reload

Optional Packages

  • React Router - Client-side routing
  • Redux - State management (with Thunk or Saga)
  • Axios - HTTP client
  • TailwindCSS - Utility-first CSS
  • Material-UI - React component library
  • Bootstrap - Popular CSS framework

Usage

  1. Run the command:

    npx create-rp-app
  2. Answer the prompts:

    • Project name
    • TypeScript or JavaScript
    • Package manager (npm/yarn/pnpm)
    • Optional additional packages (you can press Enter to skip)
    • CSS framework
  3. Start coding:

    cd your-project-name
    npm install  # or yarn/pnpm
    npm run dev   # or yarn dev / pnpm dev

Example Output

>>>>>>  Welcome to REACTOPACK

? Enter your folder name: my-awesome-app
? Will you be using TypeScript or JavaScript? TypeScript
? Select a package manager: pnpm
? What packages to include? (optional) React Router, Axios, Redux
? Choose Redux middleware: redux-thunk
? Please choose the css framework: TailwindCSS

my-awesome-app successfully created!

To run the project:
   cd my-awesome-app
   pnpm install
   pnpm dev

Contributing

Found a bug or have a feature request? We'd love your help!

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

License

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


Support

Star this repo if you find it helpful!

Report a bug

Request a feature