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

@manglar/footer

v1.0.4

Published

Footer compartido del ecosistema Manglar (manglar.fun, WC2026Streams, ManglarPelis, ManglarNBA...).

Readme

@manglar/footer

Footer compartido para todo el ecosistema Manglar (manglar.fun, WC2026Streams, ManglarPelis, y lo que siga — ManglarNBA, ManglarFutbol...).

Qué resuelve

Antes: 3 repos, 3 Footer.tsx completamente distintos, cero código compartido, y los links de Explorar/Géneros/Cuenta en ManglarPelis eran <button> sin onClick (no hacían nada).

Ahora: un solo paquete instalado en los 3 (pronto 4) repos.

  • La columna "Ecosistema Manglar" y "Legal" salen SIEMPRE del mismo array (src/ecosystem.ts). Agregar ManglarNBA = una entrada, un npm publish, un npm update en cada repo.
  • Los links legales (Privacidad, Términos, Cookies, DMCA) apuntan a manglar.fun/legal/* — páginas reales que viven UNA vez en el Hub, no 4 copias del mismo texto.
  • Cada sitio solo define lo que le es propio (sus columnas de navegación, redes sociales, disclaimer) vía props.

1. Publicar el paquete

Necesitas una cuenta de npm (gratis, npmjs.com/signup). Luego:

cd manglar-footer
npm install
npm run build        # compila src/ -> dist/
npm login            # una sola vez
npm publish          # como es @manglar/footer (scoped), publica público gratis

Si prefieres no publicarlo público en npm, alternativas:

  • GitHub Packages (privado, gratis): cambia el registry en .npmrc y publica ahí en vez de npmjs.com.
  • Git submodule / dependencia por git URL: en cada repo, npm install github:tuusuario/manglar-footer — sin publicar a ningún registry, pero pierdes versionado semántico fácil.

Recomendación: publícalo público en npm. No expone nada sensible (es solo UI), y es la opción con menos fricción para actualizar los 4 sitios.

2. Instalar en cada repo

npm install @manglar/footer

3. Reemplazar el Footer.tsx de cada repo

Ya te dejé el Footer.tsx final de cada proyecto en integraciones/:

  • integraciones/ManglarPelis/Footer.tsx → reemplaza ManglarPelis/src/app/components/Footer.tsx. Nota: el componente ahora recibe onNavigate como prop — pásale el mismo navigate que ya usas en App.tsx al renderizar <Footer onNavigate={navigate} />.
  • integraciones/wc2026/Footer.tsx → reemplaza wc2026/src/app/components/Footer.tsx. Usa rutas reales (/en-vivo, /partidos, etc.) así que no necesita props nuevas.
  • integraciones/Manglar_HUB/Footer.tsx → reemplaza Manglar_HUB/src/app/components/Footer.tsx. Puedes borrar src/app/config/ecosystem.ts — ya no lo usa el footer (el registry ahora vive en el paquete). Si el EcosystemStrip del home lo sigue usando, déjalo o migra esas cards también a leer de @manglar/footer.

4. Cuando llegue ManglarNBA (en unas semanas)

  1. En manglar-footer/src/ecosystem.ts, descomenta/agrega la entrada de nba con su URL real.
  2. npm version patch && npm publish.
  3. En los 4 repos: npm update @manglar/footer.
  4. En el repo nuevo de ManglarNBA: crea su propio Footer.tsx copiando el patrón de integraciones/wc2026/Footer.tsx (le pasas sus columnas propias). El resto —Ecosistema, Legal, copyright— sale gratis.

5. Páginas legales reales en el Hub

Los links de Legal apuntan a https://manglar.fun/legal/privacidad, /terminos, /cookies, /dmca. Esas 4 rutas hoy no existen todavía en Manglar_HUB — solo el footer ya apunta ahí correctamente. Si quieres, en otra sesión te armo esas 4 páginas (contenido base de privacidad/DMCA que luego ajustas) para que los links del footer no den 404.