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 🙏

© 2025 – Pkg Stats / Ryan Hefner

sgomez-cli

v1.0.0

Published

CLI for creation of new projects. Commands for front and back projects

Readme

🚀 sgomez CLI

Un CLI interactivo para inicializar proyectos de frontend y backend con tus frameworks favoritos.
Compatible con React (Vite), Next.js, Angular, Node.js + Express, NestJS, Django y Go.
Además soporta herramientas como Tailwind CSS v4 y Framer Motion.


📦 Instalación

Clona el repositorio e instala las dependencias:

git clone https://github.com/tuusuario/sgomez-cli.git
cd sgomez-cli
npm install

Enlaza el CLI globalmente (para poder usar el comando sgomez en cualquier lugar):

npm link

⚡ Uso

Ejecuta el comando:

sgomez start

Y sigue el asistente interactivo:

Hola, estoy para ayudarte inicializando tu nuevo proyecto.
¿Con qué quieres empezar?

- React (Vite)
- Next.js
- Angular
- Node.js (Express)
- NestJS
- Django
- Go

El asistente preguntará:

  1. Framework o Lenguaje (React, Angular, Next.js, Node, etc.)
  2. Herramientas extra (Tailwind v4, Framer Motion, etc.)
  3. Lenguaje (JavaScript / TypeScript, si aplica).
  4. Licencia (MIT, Apache, GPL, etc.)
  5. Nombre del proyecto.

Luego se crearán automáticamente todos los archivos y se instalarán las dependencias necesarias. 🎉


🛠️ Frameworks soportados

Frontend

  • React (Vite) → con soporte para Tailwind v4 + Framer Motion
  • Next.js → con Tailwind v4 (según guía oficial)
  • Angular → con Tailwind v4

Backend

  • Node.js + Express → servidor básico server.js listo para usar
  • NestJS → usando @nestjs/cli
  • Django (Python) → django-admin startproject
  • Go → con un main.go básico

📖 Ejemplo

sgomez start

➡ Selecciona React (Vite)
➡ Escoge TypeScript
➡ Activa Tailwind v4 y Framer Motion
➡ Nombre del proyecto: mi-dashboard

El CLI ejecutará:

npm create vite@latest mi-dashboard -- --template react-ts
cd mi-dashboard
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
npm install framer-motion

Y tendrás un proyecto React (Vite) listo para comenzar.


⚠️ Requisitos previos

Asegúrate de tener instalados:


📌 Roadmap

  • [ ] Soporte para bases de datos (PostgreSQL, MongoDB, Firebase, Supabase).
  • [ ] Generar configuración CI/CD.
  • [ ] Integración con Docker.

📜 Licencia

Este proyecto está bajo la licencia MIT.
¡Eres libre de usarlo, modificarlo y compartirlo!