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-gml-react

v1.0.7

Published

An interactive, zero-config CLI to instantly scaffold a modern Vite + React ecosystem (Tailwind v4, Zustand, Shadcn/DaisyUI).

Readme


Who is this for? Frontend developers who want a clean, opinionated starting point for Vite + React projects — without spending time wiring up the same tools every time.


✨ Why gml-react?

gml-react is not just another Vite wrapper. It's an intelligent scaffolding tool that:

  • ⚡ Sets up your full stack instantly
  • 🏗️ Builds a clean, scalable folder structure
  • 🎨 Injects a ready-to-use landing page UI
  • 🧹 Removes all boilerplate automatically

👀 Preview

(Screenshot or GIF of the CLI in action goes here)

$ npx create-gml-react@latest

✔ Project name: my-app
✔ Language: JavaScript
✔ Setup type: ⚡ Quick Mode

Installing dependencies...
✔ Done! Your project is ready.

🚀 Features

⚡ Quick Mode

Just hit Enter and get a full stack instantly:

| Tool | Purpose | | ------------ | ----------------- | | Vite + React | Build tooling | | Tailwind v4 | Styling | | React Router | Routing | | Zustand | State management | | DaisyUI | Component library | | React Icons | Icon set | | Axios | HTTP client |


🛠 Custom Mode

Pick exactly what you need:

| Option | Choices | | ------------ | --------------------------------- | | Language | JavaScript / TypeScript | | CSS | Tailwind v4 / Bootstrap / None | | Icons | React Icons / Lucide / Huge Icons | | State | Zustand / Redux Toolkit | | UI | DaisyUI / Shadcn UI | | Routing | React Router |


🧠 Smart Automation

Folder structure — generated automatically:

src/
├── components/
├── pages/
├── layout/
├── hooks/
└── store/

Cleanup — runs on every scaffold:

  • Removes StrictMode wrapper
  • Deletes App.css
  • Clears default index.css styles

UI injection — replaces the default Vite landing page with a modern, animated starter UI.


📦 Quick Start

Prerequisites

  • Node.js >= 18.x
  • npm, pnpm

Installation

# npx
npx create-gml-react@latest
# npm
npm create gml-react@latest
# pnpm
pnpm dlx create-gml-react@latest

📁 Project Structure

my-app/
├── public/
│   └── favicon.ico
├── src/
│   ├── assets/
│   │   └── logo.png
│   ├── components/
│   ├── hooks/
│   ├── layout/
│   ├── pages/
│   ├── store/
│   ├── App.jsx          # or App.tsx
│   ├── index.css
│   └── main.jsx         # or main.tsx
├── vite.config.js       # or vite.config.ts
└── package.json

▶️ Run Your Project

cd my-app
npm run dev

🔧 Troubleshooting

npx uses an old cached version

npx create-gml-react@latest --force

Dependencies fail to install
Make sure you're on Node.js >= 18. Run node -v to check.

Shadcn UI setup prompts appear
This is expected — Shadcn requires a brief manual config step after scaffolding. Follow the on-screen instructions.


🤝 Contributing

Got ideas? Found a bug? Contributions are welcome.

  1. Fork the repo
  2. Create a branch: git checkout -b feat/my-feature
  3. Push and open a pull request

📜 License

MIT License © 2026
Built with ❤️ for developers who love clean code.