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

screaming-dialca-react

v0.2.0

Published

CLI tool to create Vite React projects with Screaming Architecture automatically

Downloads

29

Readme

🏗️ Screaming Dialca React

npm version License: MIT

Script to create Vite React Projects with Screaming Architecture automatically.

Script para crear proyectos de Vite React con Screaming Architecture automáticamente.

English | Español


English

🚀 What is Screaming Architecture?

Screaming Architecture is an approach where your project structure immediately reveals what the application does. Instead of organizing by technical layers, you organize by features and business domains, making the codebase more maintainable and intuitive.

✨ Features

  • 🎯 Automatic Vite React project creation with Screaming Architecture
  • 📦 Package manager detection (npm, yarn, pnpm, bun)
  • 🔧 Multiple React variants support:
    • React (JavaScript)
    • React (TypeScript)
    • React + SWC
    • React + SWC (TypeScript)
  • 📁 Pre-configured folder structure following Screaming Architecture principles
  • 📚 Automatic documentation generation

📦 Installation

# Recommended (works everywhere, no global installation needed)
npx screaming-dialca-react

# Global installation (choose your package manager)
npm install -g screaming-dialca-react
# OR
yarn global add screaming-dialca-react  
# OR
pnpm add -g screaming-dialca-react

# After global installation, run with:
screaming-dialca-react

⚠️ Important Notes

  • npx is recommended as it always works without global installation
  • If you install globally with one package manager (e.g., npm), use the same manager to run commands
  • Global installations create a system-wide binary, so you can run screaming-dialca-react directly from anywhere

🏃‍♂️ Quick Start

  1. Run the command:

    npx screaming-dialca-react
  2. Follow the interactive prompts:

    • Enter your project name
    • Select a React variant
  3. Navigate to your project and start developing:

    cd your-project-name
    npm install
    npm run dev

📁 Generated Structure

your-project/
├── src/
│   ├── app/           # Application-level components and configurations
│   ├── core/          # Application core (routing, theming, etc.)
│   ├── features/      # Feature-based modules
│   │   └── example/   # Example feature
│   │       ├── components/   # Feature-specific components
│   │       ├── hooks/        # Feature-specific hooks
│   │       ├── utils/        # Feature-specific utilities
│   │       ├── pages/        # Feature-specific pages
│   │       ├── constants/    # Feature-specific constants
│   │       ├── types/        # Feature-specific types (TypeScript)
│   │       ├── contexts/     # Feature-specific contexts
│   │       ├── stores/       # Feature-specific state management
│   │       └── services/     # Feature-specific services (API calls)
│   └── shared/        # Shared components, hooks, and utilities
└── README_SCREAMING.md  # Architecture documentation

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

📄 License

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

👨‍💻 Author

Created by Dialcadev


Español

🚀 ¿Qué es la Screaming Architecture?

La Screaming Architecture es un enfoque donde la estructura de tu proyecto revela inmediatamente qué hace la aplicación. En lugar de organizar por capas técnicas, organizas por características y dominios de negocio, haciendo que el código sea más mantenible e intuitivo.

✨ Características

  • 🎯 Creación automática de proyectos Vite React con Screaming Architecture
  • 📦 Detección del gestor de paquetes (npm, yarn, pnpm, bun)
  • 🔧 Soporte para múltiples variantes de React:
    • React (JavaScript)
    • React (TypeScript)
    • React + SWC
    • React + SWC (TypeScript)
  • 📁 Estructura de carpetas preconfigurada siguiendo los principios de Screaming Architecture
  • 📚 Generación automática de documentación

📦 Instalación

# Recomendado (funciona en todas partes, no se necesita instalación global)
npx screaming-dialca-react
# Instalación global (elige tu gestor de paquetes)
npm install -g screaming-dialca-react
# O
 yarn global add screaming-dialca-react  
# O
 pnpm add -g screaming-dialca-react
# Después de la instalación global, ejecuta con:
screaming-dialca-react

⚠️ Notas Importantes

  • npx es recomendado ya que siempre funciona sin necesidad de instalación global
  • Si instalas globalmente con un gestor de paquetes (por ejemplo, npm), usa el mismo gestor para ejecutar los comandos
  • Las instalaciones globales crean un binario a nivel del sistema, por lo que puedes ejecutar screaming-dialca-react directamente desde cualquier lugar

🏃‍♂️ Inicio Rápido

  1. Ejecuta el comando:

    npx screaming-dialca-react
  2. Sigue las instrucciones interactivas:

    • Ingresa el nombre de tu proyecto
    • Selecciona una variante de React
  3. Navega a tu proyecto y comienza a desarrollar:

    cd nombre-de-tu-proyecto
    npm install
    npm run dev

📁 Estructura Generada

tu-proyecto/
├── src/
│   ├── app/           # Componentes y configuraciones a nivel de aplicación
│   ├── core/          # Núcleo de la aplicación (enrutamiento, temas, etc.)
│   ├── features/      # Módulos basados en características
│   │   └── example/   # Característica de ejemplo
│   │       ├── components/   # Componentes específicos de la característica
│   │       ├── hooks/        # Hooks específicos de la característica
│   │       ├── utils/        # Utilidades específicas de la característica
│   │       ├── pages/        # Páginas específicas de la característica
│   │       ├── constants/    # Constantes específicas de la característica
│   │       ├── types/        # Tipos específicos de la característica (TypeScript)
│   │       ├── contexts/     # Contextos específicos de la característica
│   │       ├── stores/       # Gestión de estado específica de la característica
│   │       └── services/     # Servicios específicos de la característica (llamadas API)
│   └── shared/        # Componentes, hooks y utilidades compartidas
└── README_SCREAMING.md  # Documentación de la arquitectura

🤝 Contribuir

¡Las contribuciones son bienvenidas! Por favor, siéntete libre de enviar un Pull Request.

📄 Licencia

Este proyecto está licenciado bajo la Licencia MIT - consulta el archivo LICENSE para más detalles.

👨‍💻 Autor

Creado por Dialcadev