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

blitz-react

v0.1.5

Published

CLI tool for creating minimal React applications with zero configuration

Downloads

12

Readme

Blitz React

A modern CLI tool to quickly scaffold React applications with minimal setup but all the essential tools you need to be productive. This tool creates a streamlined developer experience without unnecessary bloat.

Features

  • Vite: For optimized builds and fast build times, the tool bundles the apps with Vite
  • 🎨 Tailwind v4: Pretty much nothing needed to be said here
  • 📦 Minimal Dependencies: Only the essential packages you need
  • 🧹 Clean Structure: Logical project organization with no unnecessary files
  • 🔄 Git Integration: Automatic repo initialization (optional)

Installation

npm install -g blitz-react

Usage

Quick Start

blitz-react my-app

This command will:

  1. Create a new directory called my-app
  2. Generate a React project with the default template
  3. Install all necessary dependencies
  4. Initialize a git repository

Interactive Mode

Run without arguments for an interactive prompt:

blitz-react

The CLI will guide you through the following options:

  • Project name
  • Template selection (JavaScript or TypeScript)
  • Install dependencies
  • Initialize a git repository

Command Line Options

| Option | Description | | --------------------------- | ----------------------------------------- | | [project-name] | Name of your project folder | | -t, --template <template> | Template to use: react-js or react-ts | | --no-install | Skip installing dependencies | | --no-git | Skip git repository initialization |

Examples

# Create a TypeScript project
blitz-react my-ts-app --template react-ts

# Create a JavaScript project without installing dependencies
blitz-react my-js-app --template react-js --no-install

# Create a project without git initialization
blitz-react my-app --no-git

Generated Project Structure

The tool creates a clean, minimal React project structure:

my-app/
├── public/
│   
├── src/
│   ├── App.jsx (or App.tsx)
│   ├── main.jsx (or main.tsx)
│   ├── components/
│   │   └── Footer.jsx (or Footer.tsx)    //You can delete this footer component freely
│   └── styles.css                        //There are some nice colors here - inspired by Dracula theme
│
├── .gitignore
├── eslint.config.js
├── index.html
├── package.json
├── README.md
├── tsconfig.json (TypeScript only)
└── vite.config.js (or vite.config.ts)

Project Configuration Files

  • package.json: Contains project dependencies and scripts
  • vite.config.js/ts: Vite configuration with React plugin
  • tsconfig.json: TypeScript configuration (only for TS projects)
  • eslint.config.js: ESLint configuration with React rules

Available Scripts

Once your project is generated, you can use the following npm scripts:

# Start the development server
npm run dev

# Build for production
npm run build

# Preview the production build
npm run preview

Tech Stack

  • React 19: Latest version of React
  • Tailwind v4: Utility-first CSS framework
  • Vite: Next-generation frontend tooling
  • TypeScript: Optional static type checking
  • ESLint: Code linting with React-specific rules

Each dependency is automatically fetched at its latest stable version during project creation.

Planned Features

  • A testing framework
  • Project folder alias creation option for more accessible imports
  • Some sort of router option for React projects
  • More frameworks (Vue, Svelte, Next etc.)

Troubleshooting

If you encounter any issues during installation or project generation:

  1. Ensure you have Node.js 18+ installed
  2. Check that npm is properly configured
  3. Make sure you have write permissions in your target directory

If installation fails, the CLI will offer to clean up any partially created files. This is feature was hard to test, so always check the project location for undeleted files if the cli fails for some reason.

Contributing

Contributions are welcome and appreciated! Here's how you can contribute:

  1. Fork the repository and create your branch from main
  2. Clone your fork and set up the development environment:
    git clone https://github.com/kabaskill/blitz-react.git
    cd blitz-react
    npm install
  3. Make your changes and test them thoroughly
  4. Add new templates by creating directories in the templates folder
  5. Update documentation as needed
  6. Submit a pull request with a clear description of your changes

Development Workflow

  1. Run npm link to use your local development version
  2. Make changes to the codebase
  3. Test your changes by running the CLI in a separate directory
  4. Use npm unlink blitz-react when you're done

Project Structure

blitz-react/
├── src/
│   ├── cli.ts           # Main CLI entry point
│   ├── config.ts        # Configuration and template settings
│   ├── generators.ts    # Project generation logic
│   ├── types.ts         # TypeScript types and interfaces
│   └── utils.ts         # Helper functions
├── templates/
│   ├── common/          # Shared template files
│   ├── react-js/        # JavaScript template
│   └── react-ts/        # TypeScript template
└── package.json

License

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