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

devboiler

v1.0.2

Published

A developer scaffolding tool for React + Vite projects with modern tooling preconfigured

Readme

DevBoiler

The Hyper-Minimalist, Zero-Bloat Scaffolder for Modern Web Stacks

npm version license


DevBoiler is an open-source command-line orchestration engine engineered to initialize production-ready, clean web workspaces instantly. It eliminates configuration fatigue, hidden wrappers, and boilerplate accumulation.


🏗️ Core Architecture and Security Framework

Unlike traditional template generators that pull downstream repository clones containing unvetted configurations, DevBoiler utilizes a direct, programmatic compilation layer modeled after enterprise pipeline primitives.

Zero Dependency Footprint

The CLI operates exclusively on essential runtime primitives. Scaffolded environments contain only the explicitly declared packages requested by the operator.

Atomic Rollback Architecture

File system executions are transactional. If an installation runtime error or network interruption occurs mid-process, the engine safely halts execution and recursively sweeps the targeted workspace directory to prevent artifact corruption.

Native Compilation Pipelines

Harnesses the native Vite compiler plugin for Tailwind CSS v4, completely bypassing legacy PostCSS abstractions for high-performance builds.

Following the design parameters found within the Vite Core Repository, DevBoiler acts as a transparent orchestrator over the native build tool, ensuring your configuration remains clean, modular, and directly aligned with upstream specifications.


🚀 Quick Start

Launch the interactive setup wizard globally instantly without installation:

npx devboiler create

🔍 System Diagnostics

Verify your local machine environment is fully compatible and optimized before running a scaffold:

npx devboiler doctor

🎛️ Feature Matrix

Select your core engineering layers seamlessly via interactive prompts or headless CLI flags:

| Feature Layer | Selected Stack | Execution Blueprint | |--------------|---------------|---------------------| | Core | React + Vite + TypeScript | Pruned, blank functional container (Vite defaults purged) | | Styling | Tailwind CSS v4 | Native @tailwindcss/vite compilation engine integrated directly into configuration | | State | Zustand | Boilerplate-free global stores with cross-route state persistence | | Routing | React Router | Clean, high-performance client-side route mappings | | Linting | ESLint + Prettier | Pre-configured, unified code quality and formatting rule trees |


🔧 Headless Automation Flags

Skip the prompts entirely and spin up workspaces programmatically using inline flags:

devboiler create my-app \
  --add-tailwind \
  --add-zustand \
  --add-react-router \
  --package-manager npm

📋 Supported Execution Flags

| Flag | Description | |--------|-------------| | -p, --package-manager <npm \| pnpm \| yarn> | Explicitly target runtime executor | | --add-tailwind | Injects the native Tailwind CSS v4 Vite compilation engine | | --add-zustand | Initializes typed global store configurations | | --add-react-router | Maps client-side application routes | | --add-eslint-prettier | Injects linting and formatting rule trees | | --skip-install | Constructs directory architecture without running dependency installation |


🏛️ System Blueprint

For an exhaustive analysis of the system specifications, error catching boundaries, and localized lifecycle routines, explore our internal Architecture & Command Manifest.


💡 Philosophy

DevBoiler was designed around a simple principle:

Generate only what developers actually need.

No hidden abstractions. No opinionated framework layers. No unnecessary dependencies. No vendor lock-in.

The generated project remains fully transparent, allowing developers to work directly with upstream tooling and official documentation while maintaining complete control over their codebase.


📄 License

MIT License.

See the LICENSE file for details.