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-etc-stack

v0.2.4

Published

Quickly scaffold new, opinionated project structures suitable for medium-sized applications, enforcing strong specifications and best practices from the start.

Downloads

122

Readme

create-etc-stack

npm version

Quickly scaffold new, opinionated project structures suitable for medium-sized applications, enforcing strong specifications and best practices from the start.

Features

  • Rapid Setup — Get your project running in seconds with interactive prompts
  • Opinionated Templates — Start with well-defined structures, configs, and tooling baked in
  • Embedded Templates — All templates are bundled into the CLI at build time — no filesystem dependency at runtime
  • Standalone Binary — Ship as a single executable via bun build --compile, zero runtime dependencies
  • Monorepo Support — Electron template scaffolds a full Turbo + pnpm monorepo with automatic @scope replacement

Getting Started

# npm
npx create-etc-stack@latest my-app

# pnpm
pnpm create etc-stack@latest my-app

# bun
bun create etc-stack my-app

# yarn
yarn create etc-stack my-app

# or use the alias
npx cva@latest my-app

You can also specify a template directly:

npx create-etc-stack@latest my-app -t electron-vite-shadcn-ts

Available Templates

Electron

| Template | Stack | | ------------------------- | --------------------------------------------------------------------------------------------------------------- | | electron-vite-shadcn-ts | Electron 41 + Vite + React 19 + TanStack Router/Query + shadcn/ui (base-mira) + Tailwind CSS 4 + Turbo monorepo |

React

| Template | Stack | | ------------------------- | --------------------------------------------------- | | react-ts-biome-tailwind | React Router v7 + TypeScript + Biome + Tailwind CSS | | React Router ↗ | npm create react-router@latest (custom command) | | TanStack Router ↗ | npm create tsrouter-app@latest (custom command) |

Astro

Astro templates are planned — contributions welcome.

Building from Source

# Install dependencies
bun install

# Build for npm (vp pack)
bun run build

# Build standalone binary (bun compile)
bun run build:compile

# Development (watch mode)
bun run dev

# Lint & format
bun run check
bun run fmt

Build Outputs

| Command | Output | Size | Use case | | ----------------------- | ------------------ | ------- | ----------------- | | bun run build | dist/index.mjs | ~135 KB | npm publish | | bun run build:compile | create-etc-stack | ~62 MB | Standalone binary |

How it Works

Templates are embedded into the CLI bundle at build time:

  1. scripts/embed-templates.ts reads all template-* directories and generates src/generated/templates.ts
  2. Vite+ (vp pack) bundles everything into a single file via tsdown
  3. At runtime, the CLI writes files from embedded data — no template directories needed on disk

This architecture enables both npm distribution and standalone binary distribution from the same codebase.

Tech Stack

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests.

License

MIT