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

developer-cli-tool

v1.0.1

Published

Production-ready React + Tailwind + Router + Auth starter CLI

Readme

developer-cli-tool 🚀

npm version License: MIT

Production-grade, developer-first CLI tool for bootstrapping React applications with zero configuration fatigue.

The Problem

Setting up a modern React project with authentication, routing, and styling requires 30+ minutes of configuration. Every project needs the same setup. This CLI eliminates that setup time by providing a premium, opinionated starter kit.

Features ✨

  • ⚡️ Vite: Lightning-fast builds and HMR
  • 🎨 TailwindCSS: Pre-configured with a custom brand palette
  • 🛣️ React Router 6: Data routers pattern with protected routes
  • 🔐 Authentication: Context-based auth with JWT-ready architecture
  • 📁 Modular Structure: Industry-standard folder organization
  • 🧹 ESLint + Prettier: Opinionated but extendable linting and formatting
  • 🌍 Environment Management: Ready for development and production
  • 🚀 Production-Ready: Axios interceptors and error boundaries included

Quick Start 🏁

You can use the CLI anywhere on your machine without installing it first:

# Initialize a new project from anywhere
npx developer-cli-tool init my-app

Local Development (Source Code)

If you have cloned this repository and want to test it locally:

# From the project root
npm link
developer-cli-tool init hover-app

Advanced Usage 🛠️

The init command supports several flags for CI/CD or specific needs:

# Minimal template (no auth)
dct init my-app --template minimal

# Skip prompts and use all defaults
dct init my-app --yes

# Specify package manager
dct init my-app --package-manager pnpm

# Force overwrite of existing directory
dct init my-app --force

What's Inside? 📦

The generated project follows a clean, modular structure:

hover-app/
├── public/              # Static assets
├── src/
│   ├── assets/          # Images, icons, etc.
│   ├── components/
│   │   ├── ui/          # Reusable UI components
│   │   ├── layout/      # Header, Sidebar, Footer
│   │   └── forms/       # Context-specific forms
│   ├── contexts/        # React Contexts (Auth, Theme, etc.)
│   ├── hooks/           # Custom React hooks
│   ├── pages/           # Page components
│   ├── services/        # API services (Axios instance)
│   ├── routes/          # Router configuration
│   ├── types/           # TypeScript interfaces/types
│   ├── App.tsx          # Main App component
│   └── main.tsx         # Entry point
├── .env.example         # Environment variable templates
├── tailwind.config.js   # Tailwind configuration
└── vite.config.ts       # Vite configuration

Configuration Options ⚙️

| Flag | Description | Default | |------|-------------|---------| | -t, --template | Template to use (basic, minimal) | basic | | -p, --package-manager | npm, yarn, or pnpm | npm | | -y, --yes | Skip interactive prompts | false | | -g, --git | Initialize git repository | true | | -i, --install | Auto-install dependencies | true | | -f, --force | Overwrite existing directory | false |

Roadmap 🗺️

  • [ ] Next.js template option
  • [ ] TypeScript/JavaScript toggle
  • [ ] Storybook integration
  • [ ] Docker development environment
  • [ ] CI/CD pipeline templates (GitHub Actions)

Contributing 🤝

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

License 📄

MIT © anointedthedeveloper


Built with ❤️ by anointedthedeveloper