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

ofusweb

v1.0.2

Published

Ofuscador y minificador de código web para proteger contra ataques DDoS, CDN y DNS

Readme

OfusWeb 🌟

Ofuscador y minificador de código web profesional para proteger contra ataques DDoS, CDN y DNS

By StackGlyph ₍⑅ᐢ..ᐢ₎

✨ Características

  • 🔐 Ofuscación avanzada de JavaScript con múltiples técnicas de protección
  • 🗜️ Minificación agresiva de HTML eliminando espacios y comentarios
  • 📦 Optimización de CSS con restructuración y compresión
  • 🌍 Soporte multiidioma (Español, Português, English)
  • 🚀 CLI intuitiva y fácil de usar
  • 📁 Organización automática en carpeta build/
  • 🛡️ Protección contra reverse engineering

📦 Instalación

npm install -g ofusweb

🚀 Uso

Configuración inicial

ofuswebs --start

Este comando te permitirá:

  • 🌍 Seleccionar tu idioma preferido
  • ⚙️ Configurar OfusWeb en tu sistema
  • 💾 Guardar las preferencias permanentemente

Ofuscar archivos

ofuswebs index.html style.css script.js --obfuscate

Ejemplos

# Ofuscar un proyecto completo
ofuswebs index.html main.css app.js utils.js --obfuscate

# Ofuscar solo JavaScript
ofuswebs app.js helpers.js --obfuscate

# Ofuscar solo HTML y CSS
ofuswebs index.html styles.css --obfuscate

📂 Estructura del proyecto

tu-proyecto/
├── index.html
├── style.css
├── script.js
└── build/          # ← Archivos ofuscados aparecen aquí
    ├── index.html  # HTML minificado
    ├── style.css   # CSS optimizado
    └── script.js   # JavaScript ofuscado

🔒 Niveles de protección

JavaScript

  • ✅ Control Flow Flattening
  • ✅ Dead Code Injection
  • ✅ Debug Protection
  • ✅ Console Output Disable
  • ✅ Self Defending
  • ✅ String Array Encoding (Base64)
  • ✅ Identifier Names Generation
  • ✅ Transform Object Keys

HTML

  • ✅ Collapse Whitespace
  • ✅ Remove Comments
  • ✅ Remove Redundant Attributes
  • ✅ Minify Embedded CSS/JS
  • ✅ Remove Empty Attributes

CSS

  • ✅ Structure Restructuring
  • ✅ Media Query Merging
  • ✅ Comment Removal
  • ✅ Property Optimization

🌍 Idiomas soportados

  • 🇪🇸 Español (por defecto)
  • 🇧🇷 Português
  • 🇺🇸 English

📋 Tipos de archivos soportados

| Extensión | Tipo | Procesamiento | | --------------- | ---------- | ------------------- | | .js | JavaScript | Ofuscación completa | | .html, .htm | HTML | Minificación | | .css | CSS | Optimización |

🛠️ Desarrollo

Estructura del código

ofusweb/
├── bin/
│   └── cli.js          # CLI principal
├── src/
│   ├── config.js       # Gestión de configuración
│   └── obfuscator.js   # Motor de ofuscación
├── test/
│   └── test.js         # Tests unitarios
├── package.json
├── README.md
└── index.js           # Punto de entrada

Scripts disponibles

npm test          # Ejecutar tests
npm start         # Demo local

🚨 Notas importantes

⚠️ Los archivos originales NO se modifican. Todos los archivos procesados se guardan en la carpeta build/.

⚠️ Haz backup de tus archivos antes de usar en producción.

⚠️ La ofuscación puede afectar el debugging. Guarda copias sin ofuscar para desarrollo.

🤝 Contribuir

Las contribuciones son bienvenidas. Para cambios importantes:

  1. Fork el proyecto
  2. Crea tu rama de feature
  3. Commit tus cambios
  4. Push a la rama
  5. Abre un Pull Request

📄 Licencia

MIT License - ve el archivo LICENSE para más detalles.

🆘 Soporte

¿Problemas o sugerencias?


¡Protege tu código web con OfusWeb! 🛡️

By StackGlyph ₍⑅ᐢ..ᐢ₎